Skip to content

Commit

Permalink
Removed accidental comma
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesugb committed Jun 2, 2023
1 parent 96d5bfa commit 350678b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/orca_loader/source/orca_loader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ class orca_loader_app : public avk::invokee
printf("Time from init to fourth frame: %d min, %lld sec %lf ms\n", int_min, int_sec - static_cast<decltype(int_sec)>(int_min) * 60, fp_ms - 1000.0 * int_sec);
}

if (avk::input().key_pressed(avk::key_code::c)) {,
if (avk::input().key_pressed(avk::key_code::c)) {
// Center the cursor:
auto resolution = avk::context().main_window()->resolution();
avk::context().main_window()->set_cursor_pos({ resolution[0] / 2.0, resolution[1] / 2.0 });
Expand Down

0 comments on commit 350678b

Please sign in to comment.