diff options
author | UnavailableDev <ggwildplay@gmail.com> | 2023-03-12 12:58:51 +0100 |
---|---|---|
committer | UnavailableDev <ggwildplay@gmail.com> | 2023-03-12 12:58:51 +0100 |
commit | 43951373604173c70bb2423dd56988b60a6704db (patch) | |
tree | 990932b86648ef13384a49ef8e19426f7c0b3216 /src/engine/sprite_controller.c | |
parent | 7882ccc99d36ed225534227bd343923a7f4696c0 (diff) |
camera movement
Diffstat (limited to 'src/engine/sprite_controller.c')
-rw-r--r-- | src/engine/sprite_controller.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/engine/sprite_controller.c b/src/engine/sprite_controller.c index c224ff7..d4c44ab 100644 --- a/src/engine/sprite_controller.c +++ b/src/engine/sprite_controller.c @@ -4,7 +4,16 @@ // #include "engine/maths.h" #include "ppu/types.h" #include "ppu/consts.h" +#include "ppu/ppu.h" -uint8_t hh_get_palette(uint16_t tile_idx) { +uint8_t hh_get_palette(uint8_t tile_idx) { return hh_g_sprite_palette[tile_idx]; } + +void hh_setup_palettes(){ + 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]); + } + } +} |