Search found 1 match

by jespa
Sun Aug 23, 2009 9:40 pm
Forum: devkitPPC
Topic: How do you position text?
Replies: 1
Views: 3597

Re: How do you position text?

The console understands VT terminal escape codes, which mean that writing some special codes the printf will change the cursor position or the color of the text. For example, to position the cursor on row 2, column 0 printf("\x1b[2;0H"); Or you can can use variables to make a generic goto function ...