| 69 | int use_custom_config = 1; |
| 70 | |
| 71 | int getDialogStep() { |
| 72 | sceKernelLockLwMutex(&dialog_mutex, 1, NULL); |
| 73 | volatile int step = dialog_step; |
| 74 | sceKernelUnlockLwMutex(&dialog_mutex, 1); |
| 75 | return step; |
| 76 | } |
| 77 | |
| 78 | void setDialogStep(int step) { |
| 79 | sceKernelLockLwMutex(&dialog_mutex, 1, NULL); |
no outgoing calls
no test coverage detected