diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-06-09 23:34:38 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-06-09 23:34:38 +0200 |
commit | 55bc67bf7989acfeadf0233a4bdd5660e8f0bb69 (patch) | |
tree | ab61b00bfd351c32cc99298f4466c86baf6d1514 /deimos/core/os_win32.cpp | |
parent | 909304e44763c58c0ebbe40068a58784ebaced7b (diff) |
Start work on render backend
Diffstat (limited to 'deimos/core/os_win32.cpp')
-rw-r--r-- | deimos/core/os_win32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deimos/core/os_win32.cpp b/deimos/core/os_win32.cpp index 84fc3a3..9a8233d 100644 --- a/deimos/core/os_win32.cpp +++ b/deimos/core/os_win32.cpp @@ -169,7 +169,7 @@ public: if (hwnd == nullptr)
{
- return InternalError("Error while creating Win32 window");
+ return RuntimeError("Error while creating Win32 window");
}
::ShowWindow(hwnd, SW_SHOW);
|