summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Version.cpp
diff options
context:
space:
mode:
authorDentomologist <dentomologist@gmail.com>2026-09-05 22:04:48 -0700
committerGitHub <noreply@github.com>2026-09-05 22:04:48 -0700
commit982e8d183d8df64b641a9809ec2f3b193f94e5e5 (patch)
treecbee4a268bef161ea350155f00b5ee606f2191a2 /Source/Core/Common/Version.cpp
parentdebe8e9fd974517062a7622142bba2ecce0e6c60 (diff)
parentc774385c7b7911f467fbaf01c70893f54c63fc99 (diff)
Merge pull request #14817 from JosJuice/android-netplay-version
Common: Add Android to GetNetplayDolphinVer
Diffstat (limited to 'Source/Core/Common/Version.cpp')
-rw-r--r--Source/Core/Common/Version.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/Source/Core/Common/Version.cpp b/Source/Core/Common/Version.cpp
index 5a34b73018..dcac646e3a 100644
--- a/Source/Core/Common/Version.cpp
+++ b/Source/Core/Common/Version.cpp
@@ -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;
}