vbe0201 / 3DS.py

Python on your Nintendo 3DS
Apache License 2.0
134 stars 7 forks source link

3DS.py only outputs text to touchscreen #1

Closed vbe0201 closed 5 years ago

vbe0201 commented 5 years ago

Most likely it's just

consoleInit(GFX_TOP, NULL);
consoleInit(GFX_BOTTOM, NULL);

where the second consoleInit overwrites the first one.

The expected behavior would be to start outputting text on the topscreen, continue to the touchscreen once the topscreen is "full" and then start scrolling over both screens.

vbe0201 commented 5 years ago

After overthinking this, I came to the point that this isn't actually necessary. The top screen should be initialized for print and printf output, customized behavior is up to the end user. Hence, this issue is no longer of interest.