mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-19 22:43:32 +00:00
17 lines
422 B
C++
Executable File
17 lines
422 B
C++
Executable File
#include "SharedConstants.h"
|
||
|
||
namespace Common {
|
||
|
||
std::string getGameVersionString(const std::string& versionSuffix /* = "" */)
|
||
{
|
||
std::string result = std::string("v0.6.1") + versionSuffix;
|
||
// append 64-bit port marker only on Android 64‑bit targets
|
||
#if defined(ANDROID) && (defined(__aarch64__) || defined(__x86_64__))
|
||
result += " (64-bit port)";
|
||
#endif
|
||
result += " alpha";
|
||
return result;
|
||
}
|
||
|
||
};
|