TINSEL: Removed an unused global variable

This commit is contained in:
md5 2011-04-14 01:56:47 +03:00
parent 41706cb4d9
commit 3d1dcefd46

View File

@ -84,7 +84,7 @@ extern bool bNoPause;
// In DOS_MAIN.C
// TODO/FIXME: From dos_main.c: "Only used on PSX so far"
int clRunMode = 0;
//int clRunMode = 0;
//----------------- EXTERNAL FUNCTIONS ---------------------
@ -2490,7 +2490,7 @@ void ResumeLastGame() {
* Returns the current run mode
*/
static int RunMode() {
return clRunMode;
return 0; //clRunMode;
}
/**