diff options
author | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2023-03-10 16:42:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-10 16:42:59 +0100 |
commit | 877ac831461f35d00e0e0ab7d6afbe93768fc7c6 (patch) | |
tree | bd88048f7612af72a2ecd7643d2c4d677fb27a6a | |
parent | 635f67120132f840c825b9f9b5f4fdf2a6f250ef (diff) |
Update test_file_read.c
-rw-r--r-- | test/bin/test_file_read.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/bin/test_file_read.c b/test/bin/test_file_read.c index e9ece4d..b3357ce 100644 --- a/test/bin/test_file_read.c +++ b/test/bin/test_file_read.c @@ -28,10 +28,7 @@ void hh_ppu_load_tilemap() { // printf("%i",_size); for (int i = 0; i < _size; i++) { uint8_t data[HH_PPU_VRAM_TMM_SPRITE_SIZE]; - // for (int i = 0; i < 255; i++) { - // buffer[i] = 0; //TODO: vullen - fread(data,HH_PPU_VRAM_TMM_SPRITE_SIZE,1,fp); - // } + fread(data,HH_PPU_VRAM_TMM_SPRITE_SIZE,1,fp); printData(data); } |