diff options
-rw-r--r-- | sky/control.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sky/control.cpp b/sky/control.cpp index a2cbb54230..3b8eae8d63 100644 --- a/sky/control.cpp +++ b/sky/control.cpp @@ -1229,8 +1229,8 @@ uint16 SkyControl::parseSaveData(uint8 *srcBuf) { if (saveRev >= 3) { LODSD(srcPos, gameVersion); if (gameVersion != SkyState::_systemVars.gameVersion) { - printf("This savegame was created by Beneath a Steel Sky V.0.0%03d\n",gameVersion); - printf("It cannot be loaded by this version (%0.0%3d)\n",SkyState::_systemVars.gameVersion); + printf("This savegame was created by Beneath a Steel Sky v0.0%03d\n", gameVersion); + printf("It cannot be loaded by this version (v0.0%3d)\n", SkyState::_systemVars.gameVersion); return RESTORE_FAILED; } LODSW(srcPos, _skySound->_saveSounds[0]); |