Skip to content

Commit

Permalink
Not a test build anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
khang06 committed Dec 20, 2022
1 parent 576d8a7 commit ad591a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PianoFromAbove/MainProcs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ LRESULT WINAPI WndProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam )
cPlayback.SetPlayMode( GameState::Intro, true );
cPlayback.SetPlayable( false, true );
cPlayback.SetPosition( 0 );
SetWindowText( g_hWnd, L"pfavizkhang " __DATE__ );
SetWindowText( g_hWnd, L"pfavizkhang-dx12 " __DATE__ );
HandOffMsg( WM_COMMAND, ID_CHANGESTATE, ( LPARAM )new IntroScreen( NULL, NULL ) );
return 0;
}
Expand Down
4 changes: 2 additions & 2 deletions PianoFromAbove/PianoFromAbove.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ INT WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdL
PlaybackSettings &cPlayback = config.GetPlaybackSettings();

// Create the application window
g_hWnd = CreateWindowEx( 0, CLASSNAME, L"pfavizkhang " __DATE__, WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN, cView.GetMainLeft(), cView.GetMainTop(),
g_hWnd = CreateWindowEx( 0, CLASSNAME, L"pfavizkhang-dx12 " __DATE__, WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN, cView.GetMainLeft(), cView.GetMainTop(),
cView.GetMainWidth(), cView.GetMainHeight(), NULL, NULL, wc.hInstance, NULL );
if ( !g_hWnd ) return 1;

Expand Down Expand Up @@ -192,7 +192,7 @@ DWORD WINAPI GameThread( LPVOID lpParameter )

// Put the adapter in the window title
wchar_t buf[1024] = {};
_snwprintf_s(buf, 1024, L"pfavizkhang %S (D3D12 TEST BUILD 3! Device: %s)", __DATE__, pRenderer->GetAdapterName().c_str());
_snwprintf_s(buf, 1024, L"pfavizkhang-dx12 %S (Device: %s)", __DATE__, pRenderer->GetAdapterName().c_str());
SetWindowTextW(g_hWnd, buf);

// Event, logic, render...
Expand Down

0 comments on commit ad591a8

Please sign in to comment.