mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-09-08 03:16:30 -05:00
Merge pull request #14817 from JosJuice/android-netplay-version
Common: Add Android to GetNetplayDolphinVer
This commit is contained in:
@@ -80,11 +80,15 @@ const std::string& GetScmUpdateTrackStr()
|
||||
const std::string& GetNetplayDolphinVer()
|
||||
{
|
||||
#ifdef _WIN32
|
||||
static const std::string netplay_dolphin_ver = SCM_DESC_STR " Win";
|
||||
static const std::string netplay_dolphin_ver = SCM_DESC_STR " Windows";
|
||||
#elif __APPLE__
|
||||
static const std::string netplay_dolphin_ver = SCM_DESC_STR " Mac";
|
||||
static const std::string netplay_dolphin_ver = SCM_DESC_STR " macOS";
|
||||
#elif ANDROID
|
||||
static const std::string netplay_dolphin_ver = SCM_DESC_STR " Android";
|
||||
#elif __linux__
|
||||
static const std::string netplay_dolphin_ver = SCM_DESC_STR " Linux";
|
||||
#else
|
||||
static const std::string netplay_dolphin_ver = SCM_DESC_STR " Lin";
|
||||
static const std::string netplay_dolphin_ver = SCM_DESC_STR;
|
||||
#endif
|
||||
return netplay_dolphin_ver;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user