mirror of
https://github.com/Lorenzooone/cc3dsfs.git
synced 2026-09-07 08:05:16 -05:00
Add GUI option to rotate both screens at once
This commit is contained in:
@@ -813,6 +813,14 @@ void WindowScreen::poll() {
|
||||
case ROTATION_MENU_BOTTOM_ROTATION_INC:
|
||||
this->rotation_change(this->m_info.bot_rotation, true);
|
||||
break;
|
||||
case ROTATION_MENU_BOTH_ROTATION_DEC:
|
||||
this->rotation_change(this->m_info.top_rotation, false);
|
||||
this->rotation_change(this->m_info.bot_rotation, false);
|
||||
break;
|
||||
case ROTATION_MENU_BOTH_ROTATION_INC:
|
||||
this->rotation_change(this->m_info.top_rotation, true);
|
||||
this->rotation_change(this->m_info.bot_rotation, true);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user