mirror of
https://github.com/BeamMP/BeamMP-Launcher.git
synced 2026-02-16 10:40:46 +00:00
Make new CheckVer & GetEN compatible with linux
This commit is contained in:
@@ -73,7 +73,11 @@ Version::Version(const std::array<uint8_t, 3>& v)
|
||||
}
|
||||
|
||||
beammp_fs_string GetEN() {
|
||||
return beammp_wide("BeamMP-Launcher.exe");
|
||||
#if defined(_WIN32)
|
||||
return L"BeamMP-Launcher.exe";
|
||||
#elif defined(__linux__)
|
||||
return "BeamMP-Launcher";
|
||||
#endif
|
||||
}
|
||||
|
||||
std::string GetVer() {
|
||||
|
||||
Reference in New Issue
Block a user