From: Stephen Seo Date: Fri, 20 Jan 2023 06:20:33 +0000 (+0900) Subject: Minor fix to draw qms when not animating X-Git-Url: https://git.seodisparate.com/stephenseo/LD53?a=commitdiff_plain;h=2ce19fe8f7edcf1b3f01de623eed5c24f76c1530;p=RockPaperScissorsDuel Minor fix to draw qms when not animating --- diff --git a/src/3d_renderer.cc b/src/3d_renderer.cc index 8ef3562..288f5a4 100644 --- a/src/3d_renderer.cc +++ b/src/3d_renderer.cc @@ -419,7 +419,8 @@ void Renderer3D::draw_impl() { DrawModel(platform_model, root_pos, 1.0F, WHITE); if (flags.test(0)) { anims.do_draw(); - } else { + } + if (anims.is_done()) { for (auto &obj : qms) { obj.draw(); }