More updates

This commit is contained in:
2024-12-31 16:50:22 +01:00
parent af36b248b5
commit 657803044c
4 changed files with 5 additions and 6 deletions

View File

@@ -33,7 +33,6 @@ $(LIB_DIR)/$(ARTIFACT).a: $(TARGET).a
@mkdir -p $(LIB_DIR)
cp $(TARGET).a $(LIB_DIR)/$(ARTIFACT).a
# TODO: Improve later
# rule to make the boot image
$(SPLASH_IMAGE): ressources/Splash.png
psxfileconv --lz4 $< simple-tim full16 | cpp_out --name SplashScreen -o $@

View File

@@ -5,8 +5,7 @@
namespace JabyEngine {
namespace GPU {
uint8_t Display :: current_id = 1; //< Setup will call exchange and set it to 0
uint8_t Display :: current_id = 0;
namespace internal {
#ifdef __SUPPORT_PS3__
uintptr_t DMA :: MADR = 0;
@@ -16,7 +15,7 @@ namespace JabyEngine {
static void interrupt_handler(uint32_t);
auto irq_callback = SysCall::InterruptCallback::from(interrupt_verifier, interrupt_handler);
VSyncCallback vsync_callback = nullptr; //< TODO: Typedef later
VSyncCallback vsync_callback = nullptr;
static uint8_t vsync_counter = 0;
bool vsync_lock_callback = false;