Added track # display to the LCD screen.
This commit is contained in:
parent
b3088df3d2
commit
1c4e73d927
1 changed files with 2 additions and 1 deletions
|
@ -220,7 +220,8 @@ void DiskCaddy::ShowSelectedImage(u32 index)
|
|||
x = 0;
|
||||
y = 0;
|
||||
|
||||
snprintf(buffer, 256, "Emulating %d/%d ", index + 1, numberOfImages);
|
||||
//snprintf(buffer, 256, "Emulating %d/%d ", index + 1, numberOfImages);
|
||||
snprintf(buffer, 256, " D %d/%d ", index + 1, numberOfImages);
|
||||
screenLCD->PrintText(false, x, y, buffer, RGBA(0xff, 0xff, 0xff, 0xff), RGBA(0xff, 0xff, 0xff, 0xff));
|
||||
y += 16;
|
||||
|
||||
|
|
Loading…
Reference in a new issue