File diff r6230:13b38a5840dd → r6231:4cdf70b5a6ea
src/console_cmds.cpp
Show inline comments
 
@@ -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 {