From 8bda6c8efc0d7c5c2e4d18fcf0234052bb683a72 Mon Sep 17 00:00:00 2001 From: Madghostek Date: Mon, 31 Aug 2020 21:16:57 +0200 Subject: [PATCH] Make no speed modifier mode act like frame advance aka now it skips frames too --- main/win/main_win.h | 2 +- winproject/resource.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main/win/main_win.h b/main/win/main_win.h index d37f8538..ceb3255b 100755 --- a/main/win/main_win.h +++ b/main/win/main_win.h @@ -148,6 +148,6 @@ typedef struct _CONFIG { extern "C" CONFIG Config; -#define IGNORE_RSP (!manualFPSLimit && (!Config.skipFrequency || (frame++ % Config.skipFrequency))) //if frame advancing and either skipfreq is 0 or modulo is 0 +#define IGNORE_RSP ((!Config.limitFps || !manualFPSLimit) && (!Config.skipFrequency || (frame++ % Config.skipFrequency))) //if frame advancing and either skipfreq is 0 or modulo is 0 #endif diff --git a/winproject/resource.h b/winproject/resource.h index 288deacf..29e25029 100755 --- a/winproject/resource.h +++ b/winproject/resource.h @@ -2,7 +2,7 @@ // Plik dołączany wygenerowany przez środowisko Microsoft Visual C++. // Używany przez: rsrc.rc // -#define MUPEN_VERSION "Mupen 64 1.3.1" +#define MUPEN_VERSION "Mupen 64 1.0.4" #define IDR_MYMENU 101 #define IDR_ACCEL 103