diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-10-17 22:57:30 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-10-17 22:57:30 +0800 |
commit | ca9334f53b9456a517f8fa4a687e2d2a6cc1ca86 (patch) | |
tree | a49651d6af538f90f4033e1ff6361d309ed3fed9 /src/platform/gui/win/GodWindow.cpp | |
parent | 728d592f4075ae78b67dab6911ada05875a470a3 (diff) | |
download | cru-ca9334f53b9456a517f8fa4a687e2d2a6cc1ca86.tar.gz cru-ca9334f53b9456a517f8fa4a687e2d2a6cc1ca86.tar.bz2 cru-ca9334f53b9456a517f8fa4a687e2d2a6cc1ca86.zip |
Fix windows build.
Diffstat (limited to 'src/platform/gui/win/GodWindow.cpp')
-rw-r--r-- | src/platform/gui/win/GodWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/platform/gui/win/GodWindow.cpp b/src/platform/gui/win/GodWindow.cpp index 485eae72..7f24fd17 100644 --- a/src/platform/gui/win/GodWindow.cpp +++ b/src/platform/gui/win/GodWindow.cpp @@ -37,7 +37,7 @@ GodWindow::GodWindow(WinUiApplication* application) { HWND_MESSAGE, nullptr, h_instance, nullptr); if (hwnd_ == nullptr) - throw Win32Error(::GetLastError(), u"Failed to create god window."); + throw Win32Error(::GetLastError(), "Failed to create god window."); } GodWindow::~GodWindow() { |