From ac092732fc2e79902d85706e117da95163dd3c9f Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Sat, 9 Jan 2021 09:42:24 +0000 Subject: Added compression to the map --- game/src/game.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'game/src/game.c') diff --git a/game/src/game.c b/game/src/game.c index f5f5970..5bfeffb 100644 --- a/game/src/game.c +++ b/game/src/game.c @@ -4,6 +4,7 @@ #include "ubox.h" #include "spman.h" #include "mplayer.h" +#include "ap.h" #include "helpers.h" #include "main.h" @@ -383,9 +384,9 @@ void run_game() // we only have one map, select it cur_map = map[0]; - // copy map data into RAM, we will modify it + // uncompress map data into RAM, we will modify it // map data starts on byte 3 (skip map data size and entities size) - memcpy(cur_map_data, cur_map + 3, MAP_W * MAP_H); + ap_uncompress(cur_map_data, cur_map + 3); // init entities before drawing init_map_entities(); -- cgit v1.2.3