diff --git a/src/main.cpp b/src/main.cpp index c7e9c71..f633446 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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()