From b3b14ac2ad46bf0d5455b54b5828f67676cae8d3 Mon Sep 17 00:00:00 2001 From: truelight Date: Tue, 6 Mar 2007 20:59:52 +0000 Subject: (svn r9034) -Codechange: renamed _pause to _pause_game, as some targets already have a symbol called _pause (and therefor our variable conflicts with thatone. We shouldn't be using _ as global indicator.....) --- src/console_cmds.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/console_cmds.cpp') diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp index 5edde43be..4d3ac74fa 100644 --- a/src/console_cmds.cpp +++ b/src/console_cmds.cpp @@ -499,7 +499,7 @@ DEF_CONSOLE_CMD(ConPauseGame) return true; } - if (_pause == 0) { + if (_pause_game == 0) { DoCommandP(0, 1, 0, NULL, CMD_PAUSE); IConsolePrint(_icolour_def, "Game paused."); } else { @@ -516,7 +516,7 @@ DEF_CONSOLE_CMD(ConUnPauseGame) return true; } - if (_pause != 0) { + if (_pause_game != 0) { DoCommandP(0, 0, 0, NULL, CMD_PAUSE); IConsolePrint(_icolour_def, "Game unpaused."); } else { -- cgit v1.2.3-70-g09d2