From ac329e15116d095d9cb540e15d926f21c4266fc1 Mon Sep 17 00:00:00 2001 From: Nico de Poel Date: Fri, 9 Sep 2022 14:32:04 +0200 Subject: [PATCH] Set video mode to 60 Hz NTSC --- main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.c b/main.c index edd4fef..8ef7e8e 100644 --- a/main.c +++ b/main.c @@ -151,6 +151,8 @@ void init(void) // This not only resets the GPU but it also installs the library's // ISR subsystem to the kernel ResetGraph(0); + + SetVideoMode(MODE_NTSC); // Define display environments, first on top and second on bottom SetDefDispEnv(&disp[0], 0, 0, SCREENWIDTH, SCREENHEIGHT);