mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-31 01:11:15 +00:00
- removed unneeded WantEscape function from backend interface.
This commit is contained in:
parent
ed4f49ac86
commit
9219d24535
2 changed files with 0 additions and 7 deletions
|
@ -46,7 +46,6 @@ struct SystemCallbacks
|
||||||
void (*LanguageChanged)(const char*);
|
void (*LanguageChanged)(const char*);
|
||||||
bool (*OkForLocalization)(FTextureID, const char*);
|
bool (*OkForLocalization)(FTextureID, const char*);
|
||||||
FConfigFile* (*GetConfig)();
|
FConfigFile* (*GetConfig)();
|
||||||
bool (*WantEscape)();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
extern SystemCallbacks sysCallbacks;
|
extern SystemCallbacks sysCallbacks;
|
||||||
|
|
|
@ -543,11 +543,6 @@ static void System_SetTransition(int type)
|
||||||
nextwipe = type;
|
nextwipe = type;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool WantEscape()
|
|
||||||
{
|
|
||||||
return gi->WantEscape();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void I_StartupJoysticks();
|
void I_StartupJoysticks();
|
||||||
|
@ -597,7 +592,6 @@ int GameMain()
|
||||||
nullptr,
|
nullptr,
|
||||||
nullptr,
|
nullptr,
|
||||||
[]() ->FConfigFile* { return GameConfig; },
|
[]() ->FConfigFile* { return GameConfig; },
|
||||||
WantEscape,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
try
|
try
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue