manual folder selection now works

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401730
This commit is contained in:
David Anderson 2007-11-25 18:06:49 +00:00
parent 8d6139ad5c
commit 5c97afc2f5

View File

@ -4,6 +4,8 @@
#include "Welcome.h"
#include "GamesList.h"
#include "SelectGame.h"
#include "PerformInstall.h"
#include "LocalCopyMethod.h"
game_group_t *g_game_group = NULL;
unsigned int method_chosen = 0;
@ -156,6 +158,12 @@ INT_PTR CALLBACK ChooseMethodHandler(HWND hDlg, UINT message, WPARAM wParam, LPA
DisplayBadFolderDialog(hDlg, val);
break;
}
g_LocalCopier.SetOutputPath(method_path);
SetInstallMethod(&g_LocalCopier);
UpdateGlobalPosition(hDlg);
EndDialog(hDlg, (INT_PTR)DisplayPerformInstall);
}
}