Skip to content

Commit

Permalink
Rename view copy to 'following' to avoid confusion with 'tracking'
Browse files Browse the repository at this point in the history
  • Loading branch information
scarletcafe committed Sep 15, 2019
1 parent ef273d1 commit 7f204cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eldstar_server/src/controls.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void display_control(eldstar::window& w) {

if (w.input_state->keyboard[GLFW_KEY_TAB].action == input::down) {
w.follow_game_camera = !w.follow_game_camera;
w.status(w.follow_game_camera ? "Game camera tracking enabled." : "Tracking disabled, returning to free camera.");
w.status(w.follow_game_camera ? "Following game camera" : "Follow disabled, returning to free camera.");
}

if (w.input_state->keyboard[GLFW_KEY_C].action == input::down) {
Expand Down

0 comments on commit 7f204cc

Please sign in to comment.