commit f1c16b2d0a97c54e154997f54cb1dac26e0d6510
Author: Turo Lamminen <turotl@gmail.com>
AuthorDate: Sat May 19 14:22:55 2018 +0300
Commit: Turo Lamminen <turotl@gmail.com>
CommitDate: Sat May 19 15:52:48 2018 +0300
strife: Remove redundant call to DEH_String
Closes #1039
---
src/strife/p_switch.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/strife/p_switch.c b/src/strife/p_switch.c
index 5eec0420..849ab2bc 100644
--- a/src/strife/p_switch.c
+++ b/src/strife/p_switch.c
@@ -1015,7 +1015,7 @@ boolean P_UseSpecialLine(mobj_t* thing, line_t* line, int side)
P_GiveItemToPlayer(thing->player, SPR_TOKN, MT_TOKEN_NEW_ACCURACY);
P_ChangeSwitchTexture(line, 0);
DEH_snprintf(usemessage, sizeof(usemessage),
- DEH_String("Congratulations! You have completed the training area."));
+ "Congratulations! You have completed the training area.");
thing->player->message = usemessage;
}
break;