It's just a timer

This commit is contained in:
2025-03-15 00:02:39 +01:00
parent a29f090895
commit 8c7150a1ed
2 changed files with 14 additions and 5 deletions

View File

@@ -28,7 +28,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
Win32Window::Size size(720, 640);
Win32Window::Point origin((GetSystemMetrics(SM_CXSCREEN) - size.width) / 2,
(GetSystemMetrics(SM_CYSCREEN) - size.height) / 2);
if (!window.Create(L"simple_timer", origin, size)) {
if (!window.Create(L"Just a timer", origin, size)) {
return EXIT_FAILURE;
}
window.SetQuitOnClose(true);