mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-23 23:04:36 +01:00
Changed function and occurences
It doesnt have to rotate three times to get an anti-clockwise return.
This commit is contained in:
@@ -2853,13 +2853,11 @@ void top_toolbar_rotate_menu_dropdown(short dropdownIndex) {
|
||||
rct_window* w = window_get_main();
|
||||
if (w) {
|
||||
if (dropdownIndex == 0) {
|
||||
window_rotate_camera(w);
|
||||
window_rotate_camera(w, 1);
|
||||
window_invalidate(w);
|
||||
}
|
||||
else if (dropdownIndex == 1){
|
||||
window_rotate_camera(w);
|
||||
window_rotate_camera(w);
|
||||
window_rotate_camera(w);
|
||||
window_rotate_camera(w, -1);
|
||||
window_invalidate(w);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user