mirror of
https://github.com/Lorenzooone/cc3dsfs.git
synced 2026-08-13 04:16:29 -05:00
Revert "Try reducing the amount of structures used (will revert if no performance improvements are observed)"
Performance does not improve, and it leads to very annoying/confusing data management...
This commit is contained in:
@@ -109,10 +109,10 @@ void RotationMenu::prepare(float menu_scaling_factor, int view_size_x, int view_
|
||||
int option_index = this->options_indexes[real_index];
|
||||
switch(pollable_options[option_index]->out_action) {
|
||||
case ROTATION_MENU_TOP_ROTATION_DEC:
|
||||
this->labels[index]->setText(this->setTextOptionInt(real_index, (info->top_rotation + 90) % 360));
|
||||
this->labels[index]->setText(this->setTextOptionInt(real_index, info->top_rotation));
|
||||
break;
|
||||
case ROTATION_MENU_BOTTOM_ROTATION_DEC:
|
||||
this->labels[index]->setText(this->setTextOptionInt(real_index, (info->bot_rotation + 90) % 360));
|
||||
this->labels[index]->setText(this->setTextOptionInt(real_index, info->bot_rotation));
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user