Skip to content

Commit

Permalink
Merge pull request #932 from Hoikas/fix_913
Browse files Browse the repository at this point in the history
Fix #913.
  • Loading branch information
Hoikas authored Jun 13, 2021
2 parents 09d57a5 + b5268b7 commit 33811bd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ plDebugInputInterface::plDebugInputInterface()
fControlMap->AddCode( B_CAMERA_MOVE_RIGHT, kControlFlagNormal | kControlFlagNoRepeat );
fControlMap->AddCode( B_CAMERA_MOVE_UP, kControlFlagNormal | kControlFlagNoRepeat );
fControlMap->AddCode( B_CAMERA_MOVE_DOWN, kControlFlagNormal | kControlFlagNoRepeat );
// fControlMap->AddCode( B_TOGGLE_DRIVE_MODE, kControlFlagNormal | kControlFlagNoRepeat | kControlFlagShift );
fControlMap->AddCode( B_TOGGLE_DRIVE_MODE, kControlFlagNormal | kControlFlagNoRepeat );
#endif

// IF YOU ARE LOOKING TO CHANGE THE DEFAULT KEY BINDINGS, DO NOT LOOK HERE. GO TO
Expand Down Expand Up @@ -130,7 +130,7 @@ void plDebugInputInterface::RestoreDefaultKeyMappings()
fControlMap->BindKey( KEY_D, B_CAMERA_MOVE_RIGHT );
fControlMap->BindKey( KEY_I, B_CAMERA_MOVE_UP );
fControlMap->BindKey( KEY_K, B_CAMERA_MOVE_DOWN );
// fControlMap->BindKey( KEY_C, B_TOGGLE_DRIVE_MODE );
fControlMap->BindKey( plCtrlKeyCombo( KEY_D ), B_TOGGLE_DRIVE_MODE );
#endif
}

Expand Down

0 comments on commit 33811bd

Please sign in to comment.