#176138 - garob - Sat Apr 16, 2011 10:02 am
I installed the toolchain, copied an example and fiddled around a bit.
I found that when the text looped around it didn't print the first column of the text.
Here's the code:
and here's a screenshot:[Images not permitted - Click here to view it]
Has anyone had experiance with this and can suggest a possible cause/solution/workaround?
Thanks
I found that when the text looped around it didn't print the first column of the text.
Here's the code:
Code: |
#include <gba.h>
#include <stdio.h> int main() { int i; consoleDemoInit(); for(i = 0; i < 10; i++) printf("Hello world!"); while (1) { VBlankIntrWait(); } return 0; } |
and here's a screenshot:[Images not permitted - Click here to view it]
Has anyone had experiance with this and can suggest a possible cause/solution/workaround?
Thanks