| 59 | } |
| 60 | |
| 61 | wchar_t *utils::GetStringWithNum(const char *name, uint32_t num) |
| 62 | { |
| 63 | char fullName[128]; |
| 64 | sce_paf_snprintf(fullName, sizeof(fullName), "%s%u", name, num); |
| 65 | return g_appPlugin->GetString(fullName); |
| 66 | } |
| 67 | |
| 68 | void utils::SetPowerTickTask(PowerTick mode) |
| 69 | { |
nothing calls this directly
no outgoing calls
no test coverage detected