Skip to content

Commit cd75d2a

Browse files
Fix duplicate glfw key
1 parent d5515e2 commit cd75d2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

platform/glfw/glfw_view.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ GLFWView::GLFWView(bool fullscreen_,
352352
printf("- Press `F1` to generate a render test for the current view\n");
353353
printf("\n");
354354
printf("- Press `Tab` to cycle through the map debug options\n");
355-
printf("- Press `V` to cycle through Tile LOD modes\n");
355+
printf("- Press `F6` to cycle through Tile LOD modes\n");
356356
printf("- Press `F7` to lower the zoom level without changing the camera\n");
357357
printf("- Press `F8` to higher the zoom level without changing the camera\n");
358358
printf("- Press `Esc` to quit\n");
@@ -631,7 +631,7 @@ void GLFWView::onKey(GLFWwindow *window, int key, int /*scancode*/, int action,
631631
view->freeCameraDemoStartTime = mbgl::Clock::now();
632632
view->invalidate();
633633
} break;
634-
case GLFW_KEY_V: {
634+
case GLFW_KEY_F6: {
635635
cycleTileLodMode(*view->map);
636636
} break;
637637
case GLFW_KEY_F7: {

0 commit comments

Comments
 (0)