aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/NDS.cpp2
-rw-r--r--src/wx/main.cpp2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/NDS.cpp b/src/NDS.cpp
index ddd6c03..4c57bb6 100644
--- a/src/NDS.cpp
+++ b/src/NDS.cpp
@@ -382,8 +382,6 @@ void RunSystem(s32 cycles)
u32 RunFrame()
{
- s32 framecycles = 560190;
-
if (!Running) return 263; // dorp
diff --git a/src/wx/main.cpp b/src/wx/main.cpp
index e07d3c9..214996a 100644
--- a/src/wx/main.cpp
+++ b/src/wx/main.cpp
@@ -412,7 +412,7 @@ wxThread::ExitCode EmuThread::Entry()
// framerate limiter based off SDL2_gfx
float framerate;
if (nlines == 263) framerate = 1000.0f / 60.0f;
- else framerate = 1000.0f / ((60.0f * nlines) / 263.0f);
+ else framerate = ((1000.0f * nlines) / 263.0f) / 60.0f;
fpslimitcount++;
u32 curtick = SDL_GetTicks();