Move stdio_init_all() to before video initialization

This commit is contained in:
Wayne Venables
2025-09-28 17:21:28 -07:00
parent f2dc01f699
commit f5a6ca0ce4
16 changed files with 62 additions and 62 deletions

View File

@@ -97,7 +97,10 @@ void FlushChar()
int main()
{
int i;
// initialize stdio
stdio_init_all();
int i;
// initialize random number generator
RandInitSeed();
@@ -117,9 +120,6 @@ int main()
// initialize videomode
VideoInit();
// initialize stdio
stdio_init_all();
// initialize sound output
PWMSndInit();