mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-24 07:50:59 +00:00
- moved the game interface function to d_menu
This commit is contained in:
parent
4e5f59a373
commit
b12377962a
2 changed files with 6 additions and 7 deletions
|
@ -416,6 +416,12 @@ class MainMenu : public DukeListMenu
|
||||||
//
|
//
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
bool GameInterface::mouseInactiveConditional(bool condition) // can hopefully go away once the menu refactor is complete
|
||||||
|
{
|
||||||
|
return condition;
|
||||||
|
}
|
||||||
|
|
||||||
void GameInterface::MenuOpened()
|
void GameInterface::MenuOpened()
|
||||||
{
|
{
|
||||||
S_PauseSounds(true);
|
S_PauseSounds(true);
|
||||||
|
|
|
@ -5435,13 +5435,6 @@ bool GameInterface::mouseInactiveConditional(bool condition)
|
||||||
return MOUSEINACTIVECONDITIONAL(condition);
|
return MOUSEINACTIVECONDITIONAL(condition);
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
bool GameInterface::mouseInactiveConditional(bool condition)
|
|
||||||
{
|
|
||||||
return condition;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
END_DUKE_NS
|
END_DUKE_NS
|
||||||
|
|
Loading…
Reference in a new issue