Incremented the version number.

This commit is contained in:
Stephen White 2018-05-27 20:22:21 +10:00
parent 43022d2de8
commit d0d497d2ce
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ extern "C"
#include "sample.h"
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)
// 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);
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()