Common: asterisks go against the type name

not the variable name
This commit is contained in:
mathieui
2016-01-21 20:46:25 +01:00
parent 7c3e4b34f3
commit 78aa398e7c
22 changed files with 44 additions and 44 deletions

View File

@ -13,7 +13,7 @@
#define BUILD_TYPE_STR ""
#endif
const char *scm_rev_str = "Dolphin "
const char* 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 char* netplay_dolphin_ver = SCM_DESC_STR " Win";
#elif __APPLE__
const char *netplay_dolphin_ver = SCM_DESC_STR " Mac";
const char* netplay_dolphin_ver = SCM_DESC_STR " Mac";
#else
const char *netplay_dolphin_ver = SCM_DESC_STR " Lin";
const char* netplay_dolphin_ver = SCM_DESC_STR " Lin";
#endif
const char *scm_rev_git_str = SCM_REV_STR;
const char* scm_rev_git_str = SCM_REV_STR;
const char *scm_desc_str = SCM_DESC_STR;
const char *scm_branch_str = SCM_BRANCH_STR;
const char* scm_desc_str = SCM_DESC_STR;
const char* scm_branch_str = SCM_BRANCH_STR;