Ensure linux terminal is still working

This commit is contained in:
2024-10-06 16:43:54 -05:00
parent 45b3cf9478
commit 5444b0b8c7
15 changed files with 58 additions and 21 deletions

View File

@ -8,7 +8,7 @@
#include "frame.h"
#include "display/symbol.h"
#include "rpg/world/map.h"
#include "game.h"
#include "game/game.h"
#include "ui/textbox.h"
#include "display/draw/drawshape.h"
@ -24,6 +24,11 @@ void frameInit() {
}
void frameUpdate() {
switch(GAME.state) {
case GAME_STATE_PAUSED:
}
map_t *map = GAME.currentMap;
if(map == NULL) return;

View File

@ -8,7 +8,7 @@
#include "assert/assert.h"
#include "rpg/entity/entitydirection.h"
#include "symbol.h"
#include "time.h"
#include "game/time.h"
char_t symbolGetCharByEntity(const entity_t *ent) {
assertNotNull(ent, "Entity cannot be NULL.");