mirror of https://github.com/PCSX2/pcsx2.git
* Apply gregory's patch for inconsistent "setLogsDir / SetLogsFolder" usage.
* Fix slomo hotkey (issue 725) git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3139 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
899e691781
commit
1083b658b3
|
@ -137,7 +137,7 @@ static s32 CALLBACK fallback_freeze(int mode, freezeData *data)
|
|||
|
||||
static void CALLBACK fallback_keyEvent(keyEvent *ev) {}
|
||||
static void CALLBACK fallback_setSettingsDir(const char* dir) {}
|
||||
static void CALLBACK fallback_SetLogFolder(const char* dir) {}
|
||||
static void CALLBACK fallback_setLogDir(const char* dir) {}
|
||||
static void CALLBACK fallback_configure() {}
|
||||
static void CALLBACK fallback_about() {}
|
||||
static s32 CALLBACK fallback_test() { return 0; }
|
||||
|
@ -292,7 +292,7 @@ static const LegacyApi_CommonMethod s_MethMessCommon[] =
|
|||
|
||||
{ "keyEvent", (vMeth*)fallback_keyEvent },
|
||||
{ "setSettingsDir", (vMeth*)fallback_setSettingsDir },
|
||||
{ "SetLogFolder", (vMeth*)fallback_SetLogFolder },
|
||||
{ "setLogDir", (vMeth*)fallback_setLogDir },
|
||||
|
||||
{ "freeze", (vMeth*)fallback_freeze },
|
||||
{ "test", (vMeth*)fallback_test },
|
||||
|
|
|
@ -271,7 +271,7 @@ static const GlobalCommandDescriptor CommandDeclarations[] =
|
|||
},
|
||||
|
||||
{ "Framelimiter_SlomoToggle",
|
||||
Implementations::Framelimiter_TurboToggle,
|
||||
Implementations::Framelimiter_SlomoToggle,
|
||||
NULL,
|
||||
NULL,
|
||||
},
|
||||
|
|
|
@ -44,7 +44,7 @@ void LogInit()
|
|||
FWLog.Open(LogFile);
|
||||
}
|
||||
|
||||
EXPORT_C_(void) PADSetLogFolder(const char* dir)
|
||||
EXPORT_C_(void) FWsetLogDir(const char* dir)
|
||||
{
|
||||
// Get the path to the log directory.
|
||||
s_strLogPath = (dir==NULL) ? "logs/" : dir;
|
||||
|
|
|
@ -40,7 +40,7 @@ void LogInit()
|
|||
USBLog.Open(LogFile);
|
||||
}
|
||||
|
||||
EXPORT_C_(void) PADSetLogFolder(const char* dir)
|
||||
EXPORT_C_(void) USBsetLogDir(const char* dir)
|
||||
{
|
||||
// Get the path to the log directory.
|
||||
s_strLogPath = (dir==NULL) ? "logs/" : dir;
|
||||
|
|
|
@ -56,7 +56,7 @@ void LogInit()
|
|||
Dev9Log.Open(LogFile);
|
||||
}
|
||||
|
||||
EXPORT_C_(void) PADSetLogFolder(const char* dir)
|
||||
EXPORT_C_(void) DEV9setLogDir(const char* dir)
|
||||
{
|
||||
// Get the path to the log directory.
|
||||
s_strLogPath = (dir==NULL) ? "logs/" : dir;
|
||||
|
|
|
@ -290,7 +290,7 @@ void CALLBACK PADsetSettingsDir(const char* dir)
|
|||
s_strIniPath = (dir==NULL) ? "inis/" : dir;
|
||||
}
|
||||
|
||||
void CALLBACK PADSetLogFolder(const char* dir)
|
||||
void CALLBACK PADsetLogDir(const char* dir)
|
||||
{
|
||||
// Get the path to the log directory.
|
||||
s_strLogPath = (dir==NULL) ? "logs/" : dir;
|
||||
|
|
Loading…
Reference in New Issue