| 3671 | char osipf_GameGetDiffLevel(void) { return DIFF_LEVEL; } |
| 3672 | |
| 3673 | int osipf_GetLanguageSetting(void) { |
| 3674 | /* |
| 3675 | 0:LANGUAGE_ENGLISH |
| 3676 | 1:LANGUAGE_GERMAN |
| 3677 | 2:LANGUAGE_SPANISH |
| 3678 | 3:LANGUAGE_ITALIAN |
| 3679 | 4:LANGUAGE_FRENCH |
| 3680 | */ |
| 3681 | return Localization_GetLanguage(); |
| 3682 | } |
| 3683 | |
| 3684 | // Sets/Gets information about a path. |
| 3685 | // If you change is PV_ALL (or any of it's individual components), pass in a pointer to an |
nothing calls this directly
no test coverage detected