mirror of https://github.com/PCSX2/pcsx2.git
Fixed the previous fix!
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@313 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
parent
8fe6b24cc2
commit
10f2121ed4
|
@ -241,7 +241,7 @@ void OnOK(HWND hW) {
|
|||
SaveConfig();
|
||||
|
||||
// Apply winConfig settings:
|
||||
#define ApplyPluginPath( name ) memcpy(Config.name, winConfig.name, g_MaxPath )
|
||||
#define ApplyPluginPath( name ) strcpy( Config.name, winConfig.name )
|
||||
ApplyPluginPath( Bios );
|
||||
ApplyPluginPath( GS );
|
||||
ApplyPluginPath( PAD1 );
|
||||
|
@ -427,7 +427,7 @@ void SetBiosDir(HWND hW) {
|
|||
char Path[g_MaxPath];
|
||||
|
||||
if (SelectPath(hW, _("Select Bios Directory"), Path) == -1) return;
|
||||
strcpy(winConfig.BiosDir, Path);
|
||||
strcpy(Config.BiosDir, Path);
|
||||
CleanUpCombos(hW);
|
||||
OnConfigureDialog(hW);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue