mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-27 00:34:46 +01:00
Fix Android assertion (#7148)
This commit is contained in:
committed by
Ted John
parent
0e032c9ca4
commit
35b86e3aa1
@@ -16,7 +16,7 @@
|
||||
|
||||
#ifdef __ANDROID__
|
||||
|
||||
#include <cassert>
|
||||
#include "../core/Guard.hpp"
|
||||
#include "Platform2.h"
|
||||
|
||||
namespace Platform
|
||||
@@ -48,7 +48,7 @@ namespace Platform
|
||||
|
||||
std::string GetCurrentExecutablePath()
|
||||
{
|
||||
assert(false, "GetCurrentExecutablePath() not implemented for Android.");
|
||||
Guard::Assert(false, "GetCurrentExecutablePath() not implemented for Android.");
|
||||
return std::string();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user