mirror of
https://github.com/Lorenzooone/cc3dsfs.git
synced 2026-08-27 02:54:47 -05:00
Implement status screen
This commit is contained in:
@@ -222,8 +222,8 @@ std::string OptionSelectionMenu::setTextOptionBool(int index, bool value) {
|
||||
return this->get_string_option(index, DEFAULT_ACTION);
|
||||
return this->get_string_option(index, FALSE_ACTION);
|
||||
}
|
||||
std::string OptionSelectionMenu::setTextOptionFloat(int index, float value) {
|
||||
std::string out = this->get_string_option(index, DEFAULT_ACTION) + ": " + get_float_str_decimals(value, 1);
|
||||
std::string OptionSelectionMenu::setTextOptionFloat(int index, float value, int num_decimals) {
|
||||
std::string out = this->get_string_option(index, DEFAULT_ACTION) + ": " + get_float_str_decimals(value, num_decimals);
|
||||
return out;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user