[Change] Use a config file from home directory.
This commit is contained in:
parent
7261454fbc
commit
28e936b828
@ -74,7 +74,9 @@ int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine,
|
|||||||
#else
|
#else
|
||||||
int main(int argc, char** argv) {
|
int main(int argc, char** argv) {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
char buf[PATH_MAX];
|
||||||
|
|
||||||
// Print the version.
|
// Print the version.
|
||||||
snprintf(version, VERSION_LEN, "%d.%d.%d", VMAJOR, VMINOR, VREV);
|
snprintf(version, VERSION_LEN, "%d.%d.%d", VMAJOR, VMINOR, VREV);
|
||||||
LOG(" "APPNAME" v%s", version);
|
LOG(" "APPNAME" v%s", version);
|
||||||
@ -90,8 +92,9 @@ int main(int argc, char** argv) {
|
|||||||
WARN("Unable to create lephisto directory '%s'", lfile_basePath());
|
WARN("Unable to create lephisto directory '%s'", lfile_basePath());
|
||||||
|
|
||||||
// Set the configuration.
|
// Set the configuration.
|
||||||
|
snprintf(buf, PATH_MAX, "%s"CONF_FILE, lfile_basePath());
|
||||||
conf_setDefaults(); // Default config values.
|
conf_setDefaults(); // Default config values.
|
||||||
conf_loadConfig(CONF_FILE); // Have Lua parse config.
|
conf_loadConfig(buf); // Have Lua parse config.
|
||||||
conf_parseCLI(argc, argv); // Parse CLI arguments.
|
conf_parseCLI(argc, argv); // Parse CLI arguments.
|
||||||
|
|
||||||
// Load the data basics.
|
// Load the data basics.
|
||||||
|
Loading…
Reference in New Issue
Block a user