more stuff (#1)

Co-authored-by: JosJuice <josjuice@gmail.com>
This commit is contained in:
Nora 2022-02-28 18:48:25 -05:00 committed by GitHub
commit 2b811d8272
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
899 changed files with 3723 additions and 285 deletions

View file

@ -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;
}