From 3e17ac4587b2c110721722cbd0e447846cb451ae Mon Sep 17 00:00:00 2001 From: ABelliqueux Date: Mon, 13 Sep 2021 19:01:58 +0200 Subject: [PATCH] Remove unused init stuff --- hello_strplay/hello_strplay.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/hello_strplay/hello_strplay.c b/hello_strplay/hello_strplay.c index 2257d5e..9e2e289 100644 --- a/hello_strplay/hello_strplay.c +++ b/hello_strplay/hello_strplay.c @@ -77,18 +77,15 @@ void display(void) void main() { // Reset and initialize stuff - ResetCallback(); + init(); CdInit(); PadInit(0); - ResetGraph(0); - SetGraphDebug(0); // Play the video in loop while (1) { if (PlayStr(320, 240, 0, 0, &StrFile[0]) == 0) // If player presses Start break; // Exit the loop - } }