diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2026-06-23 02:47:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-23 02:47:44 +0200 |
| commit | 32ee8ad7ca618669f595f845aff4d59e1eb20511 (patch) | |
| tree | da5c802534e1e76436e267b958768b943b6db81a /Source/Core/Common/Version.cpp | |
| parent | 5f011709b78c516c80e251c7752e70202af7330e (diff) | |
| parent | 53dad6f23012babf65a52764715cdf7fc5f0638c (diff) | |
Merge pull request #14693 from JosJuice/redump-info
Use redump.info instead of redump.org
Diffstat (limited to 'Source/Core/Common/Version.cpp')
| -rw-r--r-- | Source/Core/Common/Version.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/Core/Common/Version.cpp b/Source/Core/Common/Version.cpp index 618d000b9f..5a34b73018 100644 --- a/Source/Core/Common/Version.cpp +++ b/Source/Core/Common/Version.cpp @@ -19,6 +19,12 @@ namespace Common #define BUILD_TYPE_STR "" #endif +const std::string& GetEmulatorName() +{ + static const std::string emulator_name = EMULATOR_NAME; + return emulator_name; +} + const std::string& GetScmRevStr() { static const std::string scm_rev_str = EMULATOR_NAME " " |
