diff options
author | Nebuleon <nebuleon@alakazam> | 2013-10-19 22:35:42 +0000 |
---|---|---|
committer | Nebuleon <nebuleon@alakazam> | 2013-10-20 03:52:01 +0000 |
commit | 7b55a50eea79105f508ada053d0470f8c97b6f60 (patch) | |
tree | 7ca361b46434081f7774c5af85dcb006c1d250db /source/opendingux/port.c | |
parent | aea504edd625a84dbd5abfc1aaaf3cca95ae009d (diff) | |
download | ReGBA-7b55a50eea79105f508ada053d0470f8c97b6f60.zip ReGBA-7b55a50eea79105f508ada053d0470f8c97b6f60.tar.gz ReGBA-7b55a50eea79105f508ada053d0470f8c97b6f60.tar.bz2 |
OpenDingux: Fix self-overlapping FPS counter caused by commit 9d0e7a5405882c9ce982b5b0e79cb2f45612ad8f.
Diffstat (limited to 'source/opendingux/port.c')
-rw-r--r-- | source/opendingux/port.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/opendingux/port.c b/source/opendingux/port.c index c771f1f..6fd4229 100644 --- a/source/opendingux/port.c +++ b/source/opendingux/port.c @@ -111,6 +111,7 @@ void ReGBA_DisplayFPS(void) char line[512]; sprintf(line, "%2u/%3u", Stats.RenderedFPS, Stats.EmulatedFPS); // White text, black outline + ScaleModeUnapplied(); print_string_outline(line, RGB888_TO_RGB565(255, 255, 255), RGB888_TO_RGB565(0, 0, 0), 7, GCW0_SCREEN_HEIGHT - 19); } } |