diff --git a/pcsx2/PluginManager.cpp b/pcsx2/PluginManager.cpp index d14cee3ef0..649a06004b 100644 --- a/pcsx2/PluginManager.cpp +++ b/pcsx2/PluginManager.cpp @@ -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 }, diff --git a/pcsx2/gui/GlobalCommands.cpp b/pcsx2/gui/GlobalCommands.cpp index a5bb5e1211..60e8f5ebbf 100644 --- a/pcsx2/gui/GlobalCommands.cpp +++ b/pcsx2/gui/GlobalCommands.cpp @@ -271,7 +271,7 @@ static const GlobalCommandDescriptor CommandDeclarations[] = }, { "Framelimiter_SlomoToggle", - Implementations::Framelimiter_TurboToggle, + Implementations::Framelimiter_SlomoToggle, NULL, NULL, }, diff --git a/plugins/FWnull/FW.cpp b/plugins/FWnull/FW.cpp index 2744df3e8b..a97704bf90 100644 --- a/plugins/FWnull/FW.cpp +++ b/plugins/FWnull/FW.cpp @@ -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; diff --git a/plugins/USBnull/USB.cpp b/plugins/USBnull/USB.cpp index afe86b6e5b..679aedaa57 100644 --- a/plugins/USBnull/USB.cpp +++ b/plugins/USBnull/USB.cpp @@ -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; diff --git a/plugins/dev9null/DEV9.cpp b/plugins/dev9null/DEV9.cpp index d8ab0c79b5..608663027e 100644 --- a/plugins/dev9null/DEV9.cpp +++ b/plugins/dev9null/DEV9.cpp @@ -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; diff --git a/plugins/zeropad/zeropad.cpp b/plugins/zeropad/zeropad.cpp index b509a5cb38..f7110af470 100644 --- a/plugins/zeropad/zeropad.cpp +++ b/plugins/zeropad/zeropad.cpp @@ -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;