1
0
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:
Runelaenen
2015-07-09 13:05:21 +02:00
parent 624a402fa9
commit bec1a52bba
4 changed files with 8 additions and 9 deletions

View File

@@ -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);
}
}