changed ctrl + shift + T to be gated behind cheat activation, and it is now labelled "Auto save # cheat"

git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@9314 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
Shadooow
2022-03-01 23:14:09 +00:00
parent 1e94aea625
commit 06599477a0
+5 -3
View File
@@ -4472,9 +4472,11 @@ void GetKeyboardInput( UINT32 *puiNewEvent )
}
else if ( fCtrl && fShift )
{
//SaveGame( SAVE__TIMED_AUTOSAVE_SLOT1, L"Auto Save 1" );
swprintf( zString, L"%s %d",pMessageStrings[ 90 ],SAVE__TIMED_AUTOSAVE_SLOT1);
DoAutoSave(SAVE__TIMED_AUTOSAVE_SLOT1,zString);
if (CHEATER_CHEAT_LEVEL())
{
swprintf(zString, L"%s cheat", pMessageStrings[MSG_SAVE_AUTOSAVE_TEXT]);
DoAutoSave(SAVE__TIMED_AUTOSAVE_SLOT1, zString);
}
}
else if ( fAlt && fShift )
{