mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
parent
ea116fbbdf
commit
2b811d8272
899 changed files with 3723 additions and 285 deletions
|
@ -19,16 +19,8 @@ namespace Common
|
|||
|
||||
const std::string& GetScmRevStr()
|
||||
{
|
||||
static const std::string scm_rev_str = "Dolphin "
|
||||
#if !SCM_IS_MASTER
|
||||
"[" SCM_BRANCH_STR "] "
|
||||
#endif
|
||||
|
||||
#ifdef __INTEL_COMPILER
|
||||
BUILD_TYPE_STR SCM_DESC_STR "-ICC";
|
||||
#else
|
||||
BUILD_TYPE_STR SCM_DESC_STR;
|
||||
#endif
|
||||
#define MPN_REV_STR "02/27/2022"
|
||||
static const std::string scm_rev_str = "Dolphin MPN";
|
||||
return scm_rev_str;
|
||||
}
|
||||
|
||||
|
@ -64,12 +56,13 @@ const std::string& GetScmUpdateTrackStr()
|
|||
|
||||
const std::string& GetNetplayDolphinVer()
|
||||
{
|
||||
#define LABEL "MPN"
|
||||
#ifdef _WIN32
|
||||
static const std::string netplay_dolphin_ver = SCM_DESC_STR " Win";
|
||||
static const std::string netplay_dolphin_ver = LABEL " Win";
|
||||
#elif __APPLE__
|
||||
static const std::string netplay_dolphin_ver = SCM_DESC_STR " Mac";
|
||||
static const std::string netplay_dolphin_ver = LABEL " Mac";
|
||||
#else
|
||||
static const std::string netplay_dolphin_ver = SCM_DESC_STR " Lin";
|
||||
static const std::string netplay_dolphin_ver = LABEL " Lin";
|
||||
#endif
|
||||
return netplay_dolphin_ver;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue