From 48ce4bf80ca83304a6e6153dc6a96bab93d7923d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 9 Nov 2005 14:10:48 +0000 Subject: [PATCH] cleanup --- stepmania/src/arch/LoadingWindow/LoadingWindow_Win32.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/stepmania/src/arch/LoadingWindow/LoadingWindow_Win32.cpp b/stepmania/src/arch/LoadingWindow/LoadingWindow_Win32.cpp index 004d34699a..8b98f276b3 100644 --- a/stepmania/src/arch/LoadingWindow/LoadingWindow_Win32.cpp +++ b/stepmania/src/arch/LoadingWindow/LoadingWindow_Win32.cpp @@ -108,7 +108,7 @@ LoadingWindow_Win32::LoadingWindow_Win32() hwnd = CreateDialog(handle.Get(), MAKEINTRESOURCE(IDD_LOADING_DIALOG), NULL, WndProc); for( unsigned i = 0; i < 3; ++i ) text[i] = "ABC"; /* always set on first call */ - SetText("Initializing hardware..."); + SetText( "Initializing hardware..." ); Paint(); } @@ -148,8 +148,7 @@ void LoadingWindow_Win32::SetText( CString sText ) continue; text[i] = asMessageLines[i]; - SendDlgItemMessage( hwnd, msgs[i], WM_SETTEXT, 0, - (LPARAM)asMessageLines[i].c_str()); + SendDlgItemMessage( hwnd, msgs[i], WM_SETTEXT, 0, (LPARAM)asMessageLines[i].c_str()); } }