Skip to content

Commit

Permalink
Update Emulator.js
Browse files Browse the repository at this point in the history
  • Loading branch information
MkGamesdev authored Nov 23, 2019
1 parent 54429a6 commit 7e8d3bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions IodineGBA/core/Emulator.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function GameBoyAdvanceEmulator() {
"timerIntervalRate":16, //How often the emulator core is called into (in milliseconds).
"emulatorSpeed":1, //Speed multiplier of the emulator.
"metricCollectionMinimum":30, //How many cycles to collect before determining speed.
"dynamicSpeed":true //Whether to actively change the target speed for best user experience.
"dynamicSpeed":false //Whether to actively change the target speed for best user experience.
}
this.audioFound = false; //Do we have audio output sink found yet?
this.loaded = false; //Did we initialize IodineGBA?
Expand Down Expand Up @@ -410,4 +410,4 @@ GameBoyAdvanceEmulator.prototype.enableDynamicSpeed = function () {
GameBoyAdvanceEmulator.prototype.disableDynamicSpeed = function () {
this.settings.dynamicSpeed = false;
this.setSpeed(1);
}
}

0 comments on commit 7e8d3bf

Please sign in to comment.