- remove Mini Cars cheat from pause

This commit is contained in:
Ilya Shurumov 2021-05-30 12:52:28 +06:00 committed by InspirationByte
parent 1822295c31
commit 8159286182

View File

@ -151,11 +151,6 @@ void ToggleSecretCarFun(int direction)
FixCarCos(&car_cosmetics[4], 12); FixCarCos(&car_cosmetics[4], 12);
} }
void ToggleMiniCars(int direction)
{
ActiveCheats.cheat13 ^= 1;
}
void ToggleJerichoMode(int direction) void ToggleJerichoMode(int direction)
{ {
ActiveCheats.cheat12 ^= 1; ActiveCheats.cheat12 ^= 1;
@ -231,7 +226,6 @@ MENU_HEADER DebugTimeOfDayHeader =
MENU_ITEM DebugJustForFunItems[] = MENU_ITEM DebugJustForFunItems[] =
{ {
{ "Secret Car Fun", PAUSE_TYPE_FUNC, 2, ToggleSecretCarFun, MENU_QUIT_RESTART, NULL }, { "Secret Car Fun", PAUSE_TYPE_FUNC, 2, ToggleSecretCarFun, MENU_QUIT_RESTART, NULL },
{ "Mini Cars", PAUSE_TYPE_FUNC, 2, ToggleMiniCars, MENU_QUIT_NONE, NULL },
{ "Jericho Mode", PAUSE_TYPE_FUNC, 2, ToggleJerichoMode, MENU_QUIT_NONE, NULL }, { "Jericho Mode", PAUSE_TYPE_FUNC, 2, ToggleJerichoMode, MENU_QUIT_NONE, NULL },
{ NULL, PAUSE_TYPE_ENDITEMS, 0u, NULL, MENU_QUIT_NONE, NULL } { NULL, PAUSE_TYPE_ENDITEMS, 0u, NULL, MENU_QUIT_NONE, NULL }
}; };