Skip to content

Commit

Permalink
addressing complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrikLundell committed May 9, 2024
1 parent 8ece92e commit aafccb7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/animation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,8 @@ void game::draw_bullet( const tripoint_bub_ms &t, const int i,
void game::draw_bullet( const tripoint &t, const int i, const std::vector<tripoint> &trajectory,
const char bullet )
{
draw_bullet_curses( m, tripoint_bub_ms( t ), bullet, tripoint_bub_ms( trajectory[i] ) );
const tripoint_bub_ms temp = tripoint_bub_ms( trajectory[i] );
draw_bullet_curses( m, tripoint_bub_ms( t ), bullet, &temp ) );

Check failure on line 563 in src/animation.cpp

View workflow job for this annotation

GitHub Actions / Basic Build and Test (Clang 10, Ubuntu, Curses)

extraneous ')' before ';'
}
#endif

Expand Down

0 comments on commit aafccb7

Please sign in to comment.