From 55bfe402e7f56c6b4a40cfdb8543c93e4eb0ed7c Mon Sep 17 00:00:00 2001 From: byuu <2107894+byuu@users.noreply.github.com> Date: Sun, 20 Oct 2019 02:18:37 +0900 Subject: [PATCH] v112 --- bsnes/emulator/emulator.hpp | 4 ++-- bsnes/target-bsnes/program/program.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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; }