mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
SCM: Use std::string.
Those macros may be defined, or not. We should support both cases, so use std::string as it also defines the length of the string.
This commit is contained in:
parent
dbd67c6b06
commit
2030ad4577
11 changed files with 31 additions and 32 deletions
|
@ -13,7 +13,7 @@
|
|||
#define BUILD_TYPE_STR ""
|
||||
#endif
|
||||
|
||||
const char* scm_rev_str = "Dolphin "
|
||||
const std::string scm_rev_str = "Dolphin "
|
||||
#if !SCM_IS_MASTER
|
||||
"[" SCM_BRANCH_STR "] "
|
||||
#endif
|
||||
|
@ -25,14 +25,14 @@ const char* scm_rev_str = "Dolphin "
|
|||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
const char* netplay_dolphin_ver = SCM_DESC_STR " Win";
|
||||
const std::string netplay_dolphin_ver = SCM_DESC_STR " Win";
|
||||
#elif __APPLE__
|
||||
const char* netplay_dolphin_ver = SCM_DESC_STR " Mac";
|
||||
const std::string netplay_dolphin_ver = SCM_DESC_STR " Mac";
|
||||
#else
|
||||
const char* netplay_dolphin_ver = SCM_DESC_STR " Lin";
|
||||
const std::string netplay_dolphin_ver = SCM_DESC_STR " Lin";
|
||||
#endif
|
||||
|
||||
const char* scm_rev_git_str = SCM_REV_STR;
|
||||
const std::string scm_rev_git_str = SCM_REV_STR;
|
||||
|
||||
const char* scm_desc_str = SCM_DESC_STR;
|
||||
const char* scm_branch_str = SCM_BRANCH_STR;
|
||||
const std::string scm_desc_str = SCM_DESC_STR;
|
||||
const std::string scm_branch_str = SCM_BRANCH_STR;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue