Skip to content

Commit

Permalink
Fix warning in Android test app
Browse files Browse the repository at this point in the history
  • Loading branch information
jhasse committed Oct 29, 2024
1 parent 0b0c41b commit de35325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/test/app/src/main/cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ JNGL_MAIN_BEGIN {
sprite.drawClipped({0.3, 0.3}, {0.7, 0.7});
jngl::setColor(200, jngl::mouseDown(jngl::mouse::Left) ? 255 : 54, 45);
for (const auto mouse : jngl::getTouchPositions()) {
jngl::drawRect(mouse.x, mouse.y, 300, 300);
jngl::drawRect({ mouse.x, mouse.y }, { 300, 300 });
}
// jngl::setSpriteColor(255, 255, 255, 120);
const auto mouse = jngl::getMousePos();
Expand Down

0 comments on commit de35325

Please sign in to comment.