summaryrefslogtreecommitdiff
path: root/src/context.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/context.h')
-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);