| 70 | } |
| 71 | |
| 72 | void errorDialog(int error) { |
| 73 | if (error < 0) { |
| 74 | initMessageDialog(SCE_MSG_DIALOG_BUTTON_TYPE_OK, language_container[ERROR], error); |
| 75 | setDialogStep(DIALOG_STEP_ERROR); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | void infoDialog(const char *msg, ...) { |
| 80 | va_list list; |
no test coverage detected