update 0.9.0

This commit is contained in:
Rupert Hausberger 2016-08-02 22:03:47 +02:00
commit 470f65cca4
9 changed files with 104 additions and 45 deletions

View file

@ -586,9 +586,15 @@ function ScriptedAmigaEmulator() {
return SAEE_None;
};
this.mute = function(mute) {
this.audio.mute(mute);
return SAEE_None;
};
this.keyPress = function(e, down) {
this.input.keyPress(e, down);
}
return SAEE_None;
};
/*---------------------------------*/