made player position be fixed248_t

This commit is contained in:
2025-06-18 15:03:53 -05:00
parent 9a306df7e5
commit ee22aadcc7
2 changed files with 13 additions and 6 deletions

View File

@ -17,8 +17,8 @@ void playerInit() {
entityInit(ent, ENTITY_TYPE_PLAYER);
ent->id = PLAYER_ENTITY_ID;
ent->x = fx248Fromui32(WORLD_PLAYER_SPAWN_X);
ent->y = fx248Fromui32(WORLD_PLAYER_SPAWN_Y);
ent->x = WORLD_PLAYER_SPAWN_X;
ent->y = WORLD_PLAYER_SPAWN_Y;
}
void playerNPCInit(entity_t *entity) {