| 243 | } |
| 244 | |
| 245 | bool MapSelectApp::Menu::move(Direction direction) { |
| 246 | // fabricated return, but size matches this way |
| 247 | if (mspSelectedMenu->mSubMenus[direction]) { |
| 248 | mspSelectedMenu->mMapType = 1; |
| 249 | mspSelectedMenu = mspSelectedMenu->mSubMenus[direction]; |
| 250 | mspSelectedMenu->mMapType = 2; |
| 251 | GetGameAudioMain()->startSystemSe(0x20000); |
| 252 | return true; |
| 253 | } |
| 254 | return false; |
| 255 | } |
| 256 | |
| 257 | void MapSelectApp::Menu::decide() { |
| 258 | GetGameAudioMain()->startSystemSe(0x20002); |
nothing calls this directly
no test coverage detected