display 1581 rom name after mounting an d81 image on big screen
This commit is contained in:
parent
b77fa6fb2d
commit
28679fa10f
3 changed files with 9 additions and 2 deletions
|
@ -1432,6 +1432,11 @@ void FileBrowser::ClearSelections()
|
|||
}
|
||||
|
||||
void FileBrowser::ShowDeviceAndROM()
|
||||
{
|
||||
ShowDeviceAndROM( roms->ROMNames[roms->currentROMIndex] );
|
||||
}
|
||||
|
||||
void FileBrowser::ShowDeviceAndROM( const char* ROMName )
|
||||
{
|
||||
char buffer[256];
|
||||
u32 textColour = RGBA(0, 0, 0, 0xff);
|
||||
|
@ -1443,7 +1448,7 @@ void FileBrowser::ShowDeviceAndROM()
|
|||
snprintf(buffer, 256, "Device %2d %*s\r\n"
|
||||
, *deviceID
|
||||
, roms->GetLongestRomNameLen()
|
||||
, roms->ROMNames[roms->currentROMIndex]
|
||||
, ROMName
|
||||
);
|
||||
screenMain->PrintText(false, x, y, buffer, textColour, bgColour);
|
||||
#endif
|
||||
|
|
|
@ -187,6 +187,8 @@ public:
|
|||
void ClearSelections();
|
||||
|
||||
void ShowDeviceAndROM();
|
||||
void ShowDeviceAndROM( const char* ROMName );
|
||||
|
||||
|
||||
void ClearScreen();
|
||||
|
||||
|
|
|
@ -651,7 +651,7 @@ EmulatingMode BeginEmulating(FileBrowser* fileBrowser, const char* filenameForIc
|
|||
{
|
||||
pi1581.Insert(diskImage);
|
||||
fileBrowser->DisplayDiskInfo(diskImage, filenameForIcon);
|
||||
fileBrowser->ShowDeviceAndROM();
|
||||
fileBrowser->ShowDeviceAndROM( roms.ROMName1581 );
|
||||
return EMULATING_1581;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue