| 267 | } |
| 268 | |
| 269 | int sceMsgDialogProgressBarSetValue(SceMsgDialogProgressBarTarget target, SceUInt32 rate) { |
| 270 | if (rate > 100) |
| 271 | return VITASHELL_ERROR_INVALID_ARGUMENT; |
| 272 | |
| 273 | uncommon_dialog.progress = rate; |
| 274 | return 0; |
| 275 | } |
| 276 | |
| 277 | int drawUncommonDialog() { |
| 278 | if (uncommon_dialog.status == SCE_COMMON_DIALOG_STATUS_NONE) |
no outgoing calls
no test coverage detected