mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-10 03:25:55 +00:00
parent
ea116fbbdf
commit
2b811d8272
899 changed files with 3723 additions and 285 deletions
|
@ -77,7 +77,7 @@
|
|||
#define SHADERCACHE_LEGACY_DIR "ShaderCache"
|
||||
|
||||
// The theme directory used by default
|
||||
#define DEFAULT_THEME_DIR "Clean"
|
||||
#define DEFAULT_THEME_DIR "Mario Party Netplay"
|
||||
|
||||
// Filenames
|
||||
// Files in the directory returned by GetUserPath(D_CONFIG_IDX)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -79,7 +79,7 @@ var branch = GetFirstStdOutLine(gitexe + cmd_branch);
|
|||
var isStable = +("master" == branch || "stable" == branch);
|
||||
|
||||
// Get environment information.
|
||||
var distributor = wshShell.ExpandEnvironmentStrings("%DOLPHIN_DISTRIBUTOR%");
|
||||
var distributor = "Mario Party Netplay";
|
||||
if (distributor == "%DOLPHIN_DISTRIBUTOR%") distributor = "None";
|
||||
var default_update_track = wshShell.ExpandEnvironmentStrings("%DOLPHIN_DEFAULT_UPDATE_TRACK%");
|
||||
if (default_update_track == "%DOLPHIN_DEFAULT_UPDATE_TRACK%") default_update_track = "";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue