fix MessageBox not displaying unicode

This commit is contained in:
Chris Danford
2006-02-03 05:45:04 +00:00
parent 90a744d6ab
commit 35408c5ed6
8 changed files with 10 additions and 2 deletions
@@ -18,6 +18,7 @@
#include "archutils/Win32/DialogUtil.h"
#include "LocalizedString.h"
#include "RageLog.h"
#include "arch/Dialog/Dialog.h"
#ifdef _DEBUG
#define new DEBUG_NEW
@@ -276,7 +277,7 @@ void CSMPackageInstallDlg::OnOK()
int iSelectedInstallDirIndex = m_comboDir.GetCurSel();
if( iSelectedInstallDirIndex == -1 )
{
Dialog::OK( NO_INSTALLATIONS.GetValue(), NULL, MB_OK|MB_ICONEXCLAMATION );
Dialog::OK( NO_INSTALLATIONS.GetValue() );
return;
}