commit 4ce27fe5751a58189202b8ab6c3d11ef59ace56b
Author: nukeykt <alexeytf2@icloud.com>
AuthorDate: Fri Jun 10 13:11:17 2016 +0900
Commit: nukeykt <alexeytf2@icloud.com>
CommitDate: Fri Jun 10 13:11:17 2016 +0900
doom: Fix tab char in last commit.
---
src/doom/am_map.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/doom/am_map.c b/src/doom/am_map.c
index 004b232a..8d3c49ee 100644
--- a/src/doom/am_map.c
+++ b/src/doom/am_map.c
@@ -697,12 +697,12 @@ AM_Responder
rc = false;
}
- if ((!deathmatch || gameversion <= exe_doom_1_8)
- && cht_CheckCheat(&cheat_amap, ev->data2))
- {
- rc = false;
- cheating = (cheating+1) % 3;
- }
+ if ((!deathmatch || gameversion <= exe_doom_1_8)
+ && cht_CheckCheat(&cheat_amap, ev->data2))
+ {
+ rc = false;
+ cheating = (cheating + 1) % 3;
+ }
}
else if (ev->type == ev_keyup)
{