1
0
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:
Michał Janiszewski
2018-02-08 08:47:48 +01:00
committed by Ted John
parent 0e032c9ca4
commit 35b86e3aa1

View File

@@ -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();
}
}