jblanked 11 달 전
부모
커밋
c8fdf63a88
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      game/player.c

+ 1 - 1
game/player.c

@@ -471,7 +471,7 @@ static SpriteContext *sprite_generic_alloc(const char *id, bool is_enemy, uint8_
     ctx->height = height;
     if (!is_enemy)
     {
-        snprintf(ctx->right_file_name, sizeof(ctx->right_file_name), "eNTITY_right_%s_%dx%dpx.fxbm", id, width, height);
+        snprintf(ctx->right_file_name, sizeof(ctx->right_file_name), "player_right_%s_%dx%dpx.fxbm", id, width, height);
         snprintf(ctx->left_file_name, sizeof(ctx->left_file_name), "player_left_%s_%dx%dpx.fxbm", id, width, height);
     }
     else