mirror of
https://github.com/geode-sdk/geode.git
synced 2024-12-14 10:01:20 -05:00
18 lines
275 B
C++
18 lines
275 B
C++
|
#include <crashlog.hpp>
|
||
|
|
||
|
#ifdef GEODE_IS_ANDROID
|
||
|
|
||
|
ghc::filesystem::path crashlog::getCrashLogDirectory() {
|
||
|
return geode::dirs::getSaveDir();
|
||
|
}
|
||
|
|
||
|
bool crashlog::setupPlatformHandler() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bool crashlog::didLastLaunchCrash() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
#endif
|