diff --git a/bsnes/emulator/emulator.hpp b/bsnes/emulator/emulator.hpp index 8f307e83..c71a9e58 100644 --- a/bsnes/emulator/emulator.hpp +++ b/bsnes/emulator/emulator.hpp @@ -29,13 +29,13 @@ using namespace nall; namespace Emulator { static const string Name = "bsnes"; - static const string Version = "111.10"; + static const string Version = "112"; static const string Author = "byuu"; static const string License = "GPLv3"; static const string Website = "https://byuu.org"; //incremented only when serialization format changes - static const string SerializerVersion = "111.2"; + static const string SerializerVersion = "112"; namespace Constants { namespace Colorburst { diff --git a/bsnes/target-bsnes/program/program.cpp b/bsnes/target-bsnes/program/program.cpp index 1f66a0af..24c17c9e 100644 --- a/bsnes/target-bsnes/program/program.cpp +++ b/bsnes/target-bsnes/program/program.cpp @@ -88,7 +88,7 @@ auto Program::main() -> void { if(inactive()) { audio.clear(); usleep(20 * 1000); - viewportRefresh(); + if(settings.emulator.runAhead.frames == 0) viewportRefresh(); return; }