From d72b0522cd1edaff4d1a1e97bb0b6fa84ed44d08 Mon Sep 17 00:00:00 2001 From: Battleplus <121445871+Battleplus@users.noreply.github.com> Date: Tue, 11 Aug 2026 21:17:02 +0800 Subject: [PATCH] fix target star texture path --- ocean/target/target.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocean/target/target.h b/ocean/target/target.h index 016f198f5f..242cefcbef 100644 --- a/ocean/target/target.h +++ b/ocean/target/target.h @@ -171,7 +171,7 @@ void c_render(Target* env) { SetTargetFPS(60); env->client = (Client*)calloc(1, sizeof(Client)); env->client->puffer = LoadTexture("resources/shared/puffers_128.png"); - env->client->star = LoadTexture("resources/shared/star.png"); + env->client->star = LoadTexture("resources/onlyfish/star.png"); } // Standard across our envs so exiting is always the same