Added the auto loading of the 1581 ROM.

I used the default name of 1581-rom.318045-02.bin
That way it can easily be downloaded and copied from http://www.zimmers.net/anonftp/pub/cbm/firmware/drives/new/1581/1581-rom.318045-02.bin
This commit is contained in:
Stephen White 2019-12-30 13:31:13 +11:00
parent f559159e2e
commit 35bc99d7c6
1 changed files with 4 additions and 1 deletions

View File

@ -367,6 +367,9 @@ const char* Options::GetRomName(int index) const
const char* Options::GetRomName1581() const
{
if (ROMName1581[0] == 0)
return "1581-rom.318045-02.bin";
else
return ROMName1581;
}