| 226 | } |
| 227 | |
| 228 | wchar_t *menu::Settings::CBOnGetString(const char *elementId) |
| 229 | { |
| 230 | wchar_t *res = g_appPlugin->GetString(elementId); |
| 231 | |
| 232 | if (res[0] == 0) |
| 233 | { |
| 234 | if (!sce_paf_strcmp(elementId, "msg_verinfo")) |
| 235 | { |
| 236 | return s_verinfo; |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | return res; |
| 241 | } |
| 242 | |
| 243 | int32_t menu::Settings::CBOnGetSurface(graph::Surface **surf, const char *elementId) |
| 244 | { |
nothing calls this directly
no outgoing calls
no test coverage detected