[nostalgia/core] Get building with GLFW (it has a better Conan package than SDL)

This commit is contained in:
2021-04-28 22:27:33 -05:00
parent a17bc04ee7
commit 307684348e
10 changed files with 220 additions and 13 deletions
+2 -2
View File
@@ -47,11 +47,11 @@ ox::Error init(Context *ctx) noexcept {
return OxError(0);
}
void setEventHandler(event_handler h) noexcept {
void setEventHandler(Context*, event_handler h) noexcept {
g_eventHandler = h;
}
uint64_t ticksMs() noexcept {
uint64_t ticksMs(Context*) noexcept {
return g_timerMs;
}