Fix a bunch of emu features for Homebrew by better identification.

This commit is contained in:
LunaMoo 2017-05-26 23:15:04 +02:00
parent c109f849e0
commit 939b26475d
13 changed files with 91 additions and 32 deletions

View file

@ -133,7 +133,10 @@ FramebufferManagerCommon::~FramebufferManagerCommon() {
}
void FramebufferManagerCommon::Init() {
const std::string gameId = g_paramSFO.GetValueString("DISC_ID");
std::string gameId = g_paramSFO.GetValueString("DISC_ID");
if (gameId.empty()) {
gameId = g_paramSFO.GenerateFakeID();
}
BeginFrame();
}