diff --git a/feely_pona.cpp b/feely_pona.cpp index 8fd8aa8..c838304 100644 --- a/feely_pona.cpp +++ b/feely_pona.cpp @@ -1420,13 +1420,12 @@ void FP_Render(FP_Game *game, TELY_Platform *platform, TELY_Renderer *renderer) if (sprite.flip & TELY_AssetFlip_Y) dest_rect.size.h *= -1.f; // NOTE: Flip the texture vertically - Dqn_f32 rotate_radians = Dqn_PCG32_NextF32(&game->rng) * DQN_PI * 0.5f; TELY_Render_TextureColourV4(renderer, sprite.sheet->tex_handle, src_rect, dest_rect, Dqn_V2_Zero /*rotate origin*/, - rotate_radians, + 0.f /*rotate radians*/, TELY_COLOUR_WHITE_V4); }