We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b00924a commit 4c7f9f6Copy full SHA for 4c7f9f6
src/badguy/badguy.cpp
@@ -188,7 +188,8 @@ BadGuy::draw(DrawingContext& context)
188
}
189
else
190
{
191
- if (m_frozen && is_portable()) {
+ if (m_frozen && is_portable())
192
+ {
193
m_freezesprite->draw(context.color(), draw_pos, m_layer);
194
195
@@ -197,13 +198,8 @@ BadGuy::draw(DrawingContext& context)
197
198
199
200
if (m_state == STATE_BURNING) {
- // draw the flame sprite
201
m_firesprite->draw(context.color(), draw_pos, m_layer);
202
203
- else {
204
- /*m_firesprite->set_frame(0);
205
- m_firesprite->pause_animation();*/
206
- }
207
208
if (m_glowing)
209
0 commit comments