Incremented the version number.
This commit is contained in:
parent
43022d2de8
commit
d0d497d2ce
1 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ extern "C"
|
||||||
#include "sample.h"
|
#include "sample.h"
|
||||||
|
|
||||||
unsigned versionMajor = 1;
|
unsigned versionMajor = 1;
|
||||||
unsigned versionMinor = 1;
|
unsigned versionMinor = 2;
|
||||||
|
|
||||||
// When the emulated CPU starts we execute the first million odd cycles in non-real-time (ie as fast as possible so the emulated 1541 becomes responsive to CBM-Browser asap)
|
// When the emulated CPU starts we execute the first million odd cycles in non-real-time (ie as fast as possible so the emulated 1541 becomes responsive to CBM-Browser asap)
|
||||||
// During these cycles the CPU is executing the ROM self test routines (these do not need to be cycle accurate)
|
// During these cycles the CPU is executing the ROM self test routines (these do not need to be cycle accurate)
|
||||||
|
@ -919,7 +919,7 @@ static void DisplayLogo()
|
||||||
|
|
||||||
if (versionMinor < 10) snprintf(tempBuffer, tempBufferSize, "V%d.0%d", versionMajor, versionMinor);
|
if (versionMinor < 10) snprintf(tempBuffer, tempBufferSize, "V%d.0%d", versionMajor, versionMinor);
|
||||||
else snprintf(tempBuffer, tempBufferSize, "V%d.%d", versionMajor, versionMinor);
|
else snprintf(tempBuffer, tempBufferSize, "V%d.%d", versionMajor, versionMinor);
|
||||||
screen.PrintText(false, 700, 120, tempBuffer, FileBrowser::Colour(VIC2_COLOUR_INDEX_BLUE));
|
screen.PrintText(false, 20, 180, tempBuffer, FileBrowser::Colour(VIC2_COLOUR_INDEX_BLUE));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void LoadOptions()
|
static void LoadOptions()
|
||||||
|
|
Loading…
Reference in a new issue