Moved status bar to avoid overlap with 40 track BAM
This commit is contained in:
parent
6ce74cf9c8
commit
777ab80d99
1 changed files with 4 additions and 3 deletions
|
@ -892,10 +892,11 @@ void FileBrowser::ShowDeviceAndROM()
|
||||||
char buffer[256];
|
char buffer[256];
|
||||||
u32 textColour = RGBA(0, 0, 0, 0xff);
|
u32 textColour = RGBA(0, 0, 0, 0xff);
|
||||||
u32 bgColour = RGBA(0xff, 0xff, 0xff, 0xff);
|
u32 bgColour = RGBA(0xff, 0xff, 0xff, 0xff);
|
||||||
u32 y = screenMain->ScaleY(STATUS_BAR_POSITION_Y);
|
u32 x = 0; // 43 * 8
|
||||||
|
u32 y = screenMain->ScaleY(STATUS_BAR_POSITION_Y - 20);
|
||||||
|
|
||||||
snprintf(buffer, 256, "Device %d %s\r\n", deviceID, roms->ROMNames[roms->currentROMIndex]);
|
snprintf(buffer, 256, "Device %d %s\r\n", deviceID, roms->ROMNames[roms->currentROMIndex]);
|
||||||
screenMain->PrintText(false, 43 * 8, y, buffer, textColour, bgColour);
|
screenMain->PrintText(false, x, y, buffer, textColour, bgColour);
|
||||||
}
|
}
|
||||||
|
|
||||||
void FileBrowser::DisplayDiskInfo(DiskImage* diskImage, const char* filenameForIcon)
|
void FileBrowser::DisplayDiskInfo(DiskImage* diskImage, const char* filenameForIcon)
|
||||||
|
|
Loading…
Reference in a new issue