It's alive!!! 🦄

This commit is contained in:
Madthijs
2021-04-13 17:18:54 +02:00
parent e6df94dac0
commit bf1dad34c3
9 changed files with 79 additions and 11 deletions

View File

@@ -205,7 +205,7 @@ bool GpFileSystem_X::ResolvePath(PortabilityLayer::VirtualDirectory_t virtualDir
resolution += "/";
resolution += paths[i];
}
return true;
}

View File

@@ -12,7 +12,7 @@ public:
GpLogDriver_X();
static void Init();
void VPrintf(Category category, const char *fmt, va_list args) override;
void Shutdown() override;

View File

@@ -91,6 +91,10 @@ bool GpSystemServices_X::IsTextInputObstructive() const
bool GpSystemServices_X::IsFullscreenPreferred() const
{
#ifdef __MACOS__
return false;
#endif
return true;
}