aboutsummaryrefslogtreecommitdiff
path: root/test/bin/test_file_read.c
diff options
context:
space:
mode:
authorUnavailableDev <69792062+UnavailableDev@users.noreply.github.com>2023-03-13 17:10:26 +0100
committerGitHub <noreply@github.com>2023-03-13 17:10:26 +0100
commit5a747929ed2099755fb03c930ea68c77fda805b3 (patch)
treec32d981fb030e05754671f359f1a76eb3d0ded32 /test/bin/test_file_read.c
parent3c6648e99101e20873c952b3796b0f9e765378fc (diff)
parent2aa4abf6a3c268f7729f91b08115aac8f2e5bdae (diff)
Merge pull request #28 from UnavailableDev/game-engine
Game engine
Diffstat (limited to 'test/bin/test_file_read.c')
-rw-r--r--test/bin/test_file_read.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/test/bin/test_file_read.c b/test/bin/test_file_read.c
index b3357ce..df93395 100644
--- a/test/bin/test_file_read.c
+++ b/test/bin/test_file_read.c
@@ -16,19 +16,22 @@ void printData(uint8_t* in) {
}
void hh_ppu_load_tilemap() {
- char* filename = "tiles.bin";
+
+
+ char* filename = "slime.bin";
FILE* fp = fopen(filename,"rb");
if (!fp){
return;//error
}
+ int sprite_size = (16 * 16);
fseek(fp, 0, SEEK_END);
- int _size = ftell(fp)/HH_PPU_VRAM_TMM_SPRITE_SIZE;
- fseek(fp, 0, 0);
+ int _size = ftell(fp)/sprite_size;
+ rewind(fp);
// printf("%i",_size);
for (int i = 0; i < _size; i++) {
- uint8_t data[HH_PPU_VRAM_TMM_SPRITE_SIZE];
- fread(data,HH_PPU_VRAM_TMM_SPRITE_SIZE,1,fp);
+ uint8_t data[sprite_size];
+ fread(data,1,sprite_size,fp);
printData(data);
}