Skip to content

Commit 16d1a64

Browse files
committed
modify window titile
1 parent 840d533 commit 16d1a64

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

DX11Tutorial2/winmain.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ int WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance,
9191

9292
UINT nDefaultWidth = 1024, nDefaultHeight = 768, maxFrameRate = 144;
9393

94-
WCHAR strWindowTitle[] = L"Test";
94+
WCHAR strWindowTitle[] = L"DirectX11 Tutorial 2(Clone)";
9595
HWND hWnd = GetCreatedWindow(hInstance, &wndClass, strWindowTitle, nDefaultWidth, nDefaultHeight);
9696

9797
ShowWindow(hWnd, SW_SHOW);

DX11Tutorial4/winmain.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ int WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance,
9191

9292
UINT nDefaultWidth = 1024, nDefaultHeight = 768, maxFrameRate = 144;
9393

94-
WCHAR strWindowTitle[] = L"Test";
94+
WCHAR strWindowTitle[] = L"DirectX11 Tutorial 4(Clone)";
9595
HWND hWnd = GetCreatedWindow(hInstance, &wndClass, strWindowTitle, nDefaultWidth, nDefaultHeight);
9696

9797
ShowWindow(hWnd, SW_SHOW);

DX11Tutorial5/winmain.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ int WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance,
9191

9292
UINT nDefaultWidth = 1024, nDefaultHeight = 768, maxFrameRate = 144;
9393

94-
WCHAR strWindowTitle[] = L"Test";
94+
WCHAR strWindowTitle[] = L"DirectX11 Tutorial 5(Clone)";
9595
HWND hWnd = GetCreatedWindow(hInstance, &wndClass, strWindowTitle, nDefaultWidth, nDefaultHeight);
9696

9797
ShowWindow(hWnd, SW_SHOW);

DX11Tutorial6/winmain.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ int WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance,
9191

9292
UINT nDefaultWidth = 1280, nDefaultHeight = 800, maxFrameRate = 144;
9393

94-
WCHAR strWindowTitle[] = L"Test";
94+
WCHAR strWindowTitle[] = L"DirectX11 Tutorial 6(Clone)";
9595
HWND hWnd = GetCreatedWindow(hInstance, &wndClass, strWindowTitle, nDefaultWidth, nDefaultHeight);
9696

9797
ShowWindow(hWnd, SW_SHOW);

DX11Tutorial7/winmain.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ int WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance,
9999

100100
UINT nDefaultWidth = 1280, nDefaultHeight = 800, maxFrameRate = 144;
101101

102-
WCHAR strWindowTitle[] = L"Test";
102+
WCHAR strWindowTitle[] = L"DirectX11 Tutorial 7(Clone)";
103103
HWND hWnd = GetCreatedWindow(hInstance, &wndClass, strWindowTitle, nDefaultWidth, nDefaultHeight);
104104

105105
ShowWindow(hWnd, SW_SHOW);

0 commit comments

Comments
 (0)