summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2026-05-19 12:35:53 -0400
committerAndrew Opalach <andrew@akon.city> 2026-05-19 12:35:53 -0400
commit1971938a653ad11ee2775459dc7999ced3451d31 (patch)
tree91fcb209c16980abed86e1856bbe0e6ab6b0b0b1 /src
parent596a2a0f86800ce2bdee55f1fffdede7d64d64c0 (diff)
downloadmauri-1971938a653ad11ee2775459dc7999ced3451d31.tar.gz
mauri-1971938a653ad11ee2775459dc7999ced3451d31.tar.bz2
mauri-1971938a653ad11ee2775459dc7999ced3451d31.zip
Update deps
Diffstat (limited to 'src')
-rw-r--r--src/context.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/context.h b/src/context.h
index dce9d5e..2784cec 100644
--- a/src/context.h
+++ b/src/context.h
@@ -2,7 +2,7 @@
#define _CONTEXT_H
extern "C" {
-#include <nnwt/thread.h>
+#include <nnwt/time.h>
#include <stl/window.h>
#include <stl/gl.h>
}
@@ -37,7 +37,7 @@ class Context
this->window->userdata = this;
s32 flags = STELA_WINDOW_VSYNC;
if (!monitor.empty()) flags |= STELA_WINDOW_WALLPAPER;
- if (!this->window->create_window(this->window, width, height, monitor.c_str(), name.c_str(), flags)) {
+ if (!this->window->create_window(this->window, width, height, flags, monitor.c_str(), name.c_str(), "mauri")) {
return false;
}
this->window->gl_make_current(this->window);