comparison config.h @ 859:46bb673eed4e

Load config file and rom.db from appropriate locations on Android
author Michael Pavone <pavone@retrodev.com>
date Wed, 04 Nov 2015 22:48:27 -0800
parents bb60259e8edf
children 54ffba3768d6
comparison
equal deleted inserted replaced
858:ba19bcc00483 859:46bb673eed4e
7 #define CONFIG_H_ 7 #define CONFIG_H_
8 #include "tern.h" 8 #include "tern.h"
9 9
10 tern_node * parse_config_file(char * config_path); 10 tern_node * parse_config_file(char * config_path);
11 tern_node * load_config(); 11 tern_node * load_config();
12 #ifdef __ANDROID__
13 tern_node * parse_config_file_assets(char *config_path);
14 #endif
12 15
13 #endif //CONFIG_H_ 16 #endif //CONFIG_H_
14 17