From 04ec3f89f1dceb534015b24537903d7153dc3598 Mon Sep 17 00:00:00 2001 From: Jaby Blubb Date: Sun, 30 Apr 2023 16:40:01 +0200 Subject: [PATCH] Fix small bug --- examples/PoolBox/application/src/main.cpp | 1 + src/Library/src/BootLoader/gpu_boot.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/PoolBox/application/src/main.cpp b/examples/PoolBox/application/src/main.cpp index ecf17d07..8c498a8c 100644 --- a/examples/PoolBox/application/src/main.cpp +++ b/examples/PoolBox/application/src/main.cpp @@ -34,6 +34,7 @@ static void load_assets() { return; } } + printf("Done loading assets!\n"); } void main() { diff --git a/src/Library/src/BootLoader/gpu_boot.cpp b/src/Library/src/BootLoader/gpu_boot.cpp index 3c1f3fde..0af9922b 100644 --- a/src/Library/src/BootLoader/gpu_boot.cpp +++ b/src/Library/src/BootLoader/gpu_boot.cpp @@ -70,7 +70,7 @@ namespace JabyEngine { internal::Display::exchange_buffer_and_display(); GPU::internal::wait_ready_for_CMD(); - GPU::internal::quick_fill_fast(Color24::Black(), {PositionU16(32, 0), SizeU16(Display::Width, Display::Height)}); + GPU::internal::quick_fill_fast(Color24::Black(), {PositionU16(0, 0), SizeU16(Display::Width, Display::Height)}); __syscall_EnterCriticalSection(); __syscall_SysEnqIntRP(VblankIrq, &::JabyEngine::GPU::internal::callback);