Skip to content

Commit

Permalink
Make no speed modifier mode act like frame advance aka now it skips f…
Browse files Browse the repository at this point in the history
…rames too
  • Loading branch information
Madghostek committed Aug 31, 2020
1 parent a4c04eb commit 8bda6c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main/win/main_win.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion winproject/resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8bda6c8

Please sign in to comment.