diff options
author | eray orçunus <erayorcunus@gmail.com> | 2020-10-07 23:21:44 +0200 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2020-10-07 23:26:24 +0200 |
commit | da39624f1c694dbeaefc6762fd6867715cdb77bc (patch) | |
tree | 58d34e45cba86fba08992f522e34fc182f215eb2 /src/core/re3.cpp | |
parent | Fix build on clang (diff) | |
download | re3-da39624f1c694dbeaefc6762fd6867715cdb77bc.tar re3-da39624f1c694dbeaefc6762fd6867715cdb77bc.tar.gz re3-da39624f1c694dbeaefc6762fd6867715cdb77bc.tar.bz2 re3-da39624f1c694dbeaefc6762fd6867715cdb77bc.tar.lz re3-da39624f1c694dbeaefc6762fd6867715cdb77bc.tar.xz re3-da39624f1c694dbeaefc6762fd6867715cdb77bc.tar.zst re3-da39624f1c694dbeaefc6762fd6867715cdb77bc.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/re3.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp index 1393314c..2e112442 100644 --- a/src/core/re3.cpp +++ b/src/core/re3.cpp @@ -100,7 +100,8 @@ void FastWeatherCheat(); void OnlyRenderWheelsCheat(); void ChittyChittyBangBangCheat(); void StrongGripCheat(); -void NastyLimbsCheat(); +void SpecialCarCheats(); +void PickUpChicksCheat(); DebugMenuEntry *carCol1; DebugMenuEntry *carCol2; @@ -370,7 +371,8 @@ DebugMenuPopulate(void) DebugMenuAddCmd("Cheats", "Only render wheels", OnlyRenderWheelsCheat); DebugMenuAddCmd("Cheats", "Chitty chitty bang bang", ChittyChittyBangBangCheat); DebugMenuAddCmd("Cheats", "Strong grip", StrongGripCheat); - DebugMenuAddCmd("Cheats", "Nasty limbs", NastyLimbsCheat); + DebugMenuAddCmd("Cheats", "Special car", SpecialCarCheats); + DebugMenuAddCmd("Cheats", "Pickup chicks", PickUpChicksCheat); static int spawnCarId = MI_LANDSTAL; e = DebugMenuAddVar("Spawn", "Spawn Car ID", &spawnCarId, nil, 1, MI_LANDSTAL, MI_VICECHEE, carnames); |