diff --git a/arm9/source/godmode.c b/arm9/source/godmode.c index 6bc06e6df..660c27a4e 100644 --- a/arm9/source/godmode.c +++ b/arm9/source/godmode.c @@ -426,7 +426,7 @@ u32 FileGraphicsViewer(const char* path) { } } - if ((ret == 0) && w && h && (w < SCREEN_WIDTH(ALT_SCREEN)) && (h < SCREEN_HEIGHT)) { + if ((ret == 0) && w && h && (w <= SCREEN_WIDTH(ALT_SCREEN)) && (h <= SCREEN_HEIGHT)) { ClearScreenF(true, true, COLOR_STD_BG); DrawBitmap(ALT_SCREEN, -1, -1, w, h, bitmap); ShowString("Press to continue");