* Loads the language files in the memory, which is used after that with String_GetXXX_ByIndex(). */
| 171 | * Loads the language files in the memory, which is used after that with String_GetXXX_ByIndex(). |
| 172 | */ |
| 173 | void String_Init(void) |
| 174 | { |
| 175 | String_Load("DUNE", false, 1, 339); |
| 176 | String_Load("MESSAGE", false, 340, 367); |
| 177 | String_Load("INTRO", false, 368, 404); |
| 178 | String_Load("TEXTH", true, 405, 444); |
| 179 | String_Load("TEXTA", true, 445, 484); |
| 180 | String_Load("TEXTO", true, 485, 524); |
| 181 | String_Load("PROTECT", true, 525, -1); |
| 182 | } |
| 183 | |
| 184 | /** |
| 185 | * Unloads the language files in the memory. |
no test coverage detected