1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 04:23:20 +01:00

prepare for loading a language file

This commit is contained in:
IntelOrca
2014-08-07 23:20:58 +01:00
parent 96aaa87543
commit 13d95ded35
6 changed files with 3544 additions and 5 deletions

View File

@@ -28,6 +28,10 @@ void generate_string_file();
void reset_saved_strings();
void error_string_quit(int error, rct_string_id format);
const char *get_string(rct_string_id id);
int language_open(const char *filename);
void language_close();
enum {
// Font format codes
@@ -755,6 +759,8 @@ enum {
STR_PAGE_3 = STR_PAGE_1 + 2,
STR_PAGE_4 = STR_PAGE_1 + 3,
STR_PAGE_5 = STR_PAGE_1 + 4,
STR_COUNT = 4000
};
#endif