CreateDialogParamA should not call CreateDialogParamW, because
that'd create a dialog box with a Unicode dialog procedure...
diff --git a/windows/dialog.c b/windows/dialog.c
index 92da06f..2d5e7af 100644
--- a/windows/dialog.c
+++ b/windows/dialog.c
@@ -825,14 +825,11 @@
HWND owner, DLGPROC dlgProc,
LPARAM param )
{
- if (HIWORD(name))
- {
- LPWSTR str = HEAP_strdupAtoW( GetProcessHeap(), 0, name );
- HWND hwnd = CreateDialogParamW( hInst, str, owner, dlgProc, param);
- HeapFree( GetProcessHeap(), 0, str );
- return hwnd;
- }
- return CreateDialogParamW( hInst, (LPCWSTR)name, owner, dlgProc, param );
+ HANDLE hrsrc = FindResourceA( hInst, name, RT_DIALOGA );
+ if (!hrsrc) return 0;
+ return CreateDialogIndirectParamA( hInst,
+ (LPVOID)LoadResource(hInst, hrsrc),
+ owner, dlgProc, param );
}