| 1507 | } |
| 1508 | |
| 1509 | static std::string getPrefPath() { |
| 1510 | char* prefPath = SDL_GetPrefPath(DORA_DEFAULT_ORG_NAME, DORA_DEFAULT_APP_NAME); |
| 1511 | std::string appPath = prefPath; |
| 1512 | trimTrailingSlashes(appPath); |
| 1513 | SDL_free(prefPath); |
| 1514 | return appPath; |
| 1515 | } |
| 1516 | |
| 1517 | #if BX_PLATFORM_ANDROID |
| 1518 | Content::Content() |
no test coverage detected