Fixed Cheats

This commit is contained in:
zicodxx 2008-11-18 14:34:52 +00:00
parent 076e466009
commit 1cbb44a897
2 changed files with 3 additions and 1 deletions

View file

@ -4,6 +4,7 @@ D1X-Rebirth Changelog
-------- --------
main/console.c: When printing Gamelog, make sure canvas is NULL main/console.c: When printing Gamelog, make sure canvas is NULL
main/newmenu.c, main/multi.c, main/game.c, ui/inputbox.c, ui/menubar.c, arch/sdl/event.c, arch/sdl/key.c, arch/include/key.h: Yet another UNICODE overhaul - Using seperate buffer for UNICODE chars and only use it in key_ascii() while still using keysyms for the rest of the program so we do not screw up readings by key values altered by modifers - possibly still room to optimize main/newmenu.c, main/multi.c, main/game.c, ui/inputbox.c, ui/menubar.c, arch/sdl/event.c, arch/sdl/key.c, arch/include/key.h: Yet another UNICODE overhaul - Using seperate buffer for UNICODE chars and only use it in key_ascii() while still using keysyms for the rest of the program so we do not screw up readings by key values altered by modifers - possibly still room to optimize
main/game.c: Fixed cheats!
20081115 20081115
-------- --------

View file

@ -1858,6 +1858,8 @@ void HandleDemoKey(int key)
void FinalCheatsKey(int key) void FinalCheatsKey(int key)
{ {
if (key == 0) return;
if (!(Game_mode&GM_MULTI) && key == cheat_enable_keys[cheat_enable_index]) { if (!(Game_mode&GM_MULTI) && key == cheat_enable_keys[cheat_enable_index]) {
if (++cheat_enable_index == CHEAT_ENABLE_LENGTH) { if (++cheat_enable_index == CHEAT_ENABLE_LENGTH) {
hud_message(MSGC_GAME_CHEAT, TXT_CHEATS_ENABLED); hud_message(MSGC_GAME_CHEAT, TXT_CHEATS_ENABLED);
@ -2382,7 +2384,6 @@ void do_weapon_stuff()
void ReadControls() void ReadControls()
{ {
int key; int key;
fix key_time;
Player_fired_laser_this_frame=-1; Player_fired_laser_this_frame=-1;