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:
Jake.Stine 2008-11-11 10:00:53 +00:00 committed by Gregory Hainaut
parent 8fe6b24cc2
commit 10f2121ed4
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}