diff options
author | UnavailableDev <ggwildplay@gmail.com> | 2023-03-15 20:44:06 +0100 |
---|---|---|
committer | UnavailableDev <ggwildplay@gmail.com> | 2023-03-15 20:44:06 +0100 |
commit | 623bcb03aead264b412bcba9fed75df22e115fab (patch) | |
tree | f71e0eaa78d17f997c275f7ca5b457f11752dc01 /src/engine/sprite_controller.c | |
parent | 0c3292879774e33dfb3e8c7d787b236876508467 (diff) |
added title screen
Diffstat (limited to 'src/engine/sprite_controller.c')
-rw-r--r-- | src/engine/sprite_controller.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/engine/sprite_controller.c b/src/engine/sprite_controller.c index 5d93cf8..b38b647 100644 --- a/src/engine/sprite_controller.c +++ b/src/engine/sprite_controller.c @@ -10,11 +10,13 @@ uint8_t hh_get_palette(uint8_t tile_idx) { } void hh_setup_palettes(){ + //TODO: use simpler function for (int idx = 0; idx < HH_PPU_PALETTE_COUNT; idx++) { for (int col = 0; col < HH_PPU_PALETTE_COLOR_COUNT; col++) { hh_ppu_update_color(idx,col,hh_g_palette[idx][col]); } - } + } + // hh_ppu_update_palette_table(hh_g_palette); } bool hh_colidable(uint8_t tile_idx){ |