mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-31 00:10:26 -06:00
13 lines
224 B
C++
13 lines
224 B
C++
#include "game.h"
|
|
|
|
void Game::Exit()
|
|
{
|
|
s_isSignalExit = true;
|
|
}
|
|
|
|
bool GracefulLoopExitMidAsmHook()
|
|
{
|
|
// TODO (Sajid): investigate XAM handle closing causing assertion failure here.
|
|
return Game::s_isSignalExit;
|
|
}
|