[nostalgia/core/gba] Fix event cycle and add to setter for event handler

This commit is contained in:
2020-07-17 01:36:51 -05:00
parent a58467f327
commit dc0667ade4
12 changed files with 111 additions and 36 deletions
+10 -2
View File
@@ -8,9 +8,17 @@
#pragma once
namespace nostalgia::core::config {
#include <ox/std/types.hpp>
namespace nostalgia::core {
namespace config {
constexpr auto GbaSpriteBufferLen = 128;
constexpr auto GbaTimerBits = 64;
constexpr auto GbaEventLoopTimerBased = false;
}
using gba_timer_t = uint32_t;
}