Skip to content

Commit

Permalink
Fix floating point
Browse files Browse the repository at this point in the history
  • Loading branch information
tobbi committed Sep 6, 2023
1 parent d4686a9 commit 637dcd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/object/thunderstorm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ void
Thunderstorm::thunder()
{
SoundManager::current()->play("sounds/thunder.wav");
set_background_color(Color(0.4, 0.4, 0.4));
set_background_color(Color(0.4f, 0.4f, 0.4f));
}

void
Expand Down

0 comments on commit 637dcd4

Please sign in to comment.