| 70 | } |
| 71 | |
| 72 | void CheatOptions::updateMultiplierText(UString controlName, float multMin, float multMax) |
| 73 | { |
| 74 | auto bar = menuform->findControlTyped<ScrollBar>(controlName); |
| 75 | auto label = menuform->findControlTyped<Label>("TEXT_" + controlName); |
| 76 | label->setText( |
| 77 | format("%.0f%%", scaleScrollbarToMultiplier(bar->getValue(), multMin, multMax, |
| 78 | bar->getMinimum(), bar->getMaximum()) * |
| 79 | 100)); |
| 80 | } |
| 81 | |
| 82 | void CheatOptions::pause() {} |
| 83 |
nothing calls this directly
no test coverage detected