Fix PrefsInit() calls to take correct number of parameter

This commit is contained in:
asvitkine 2010-01-15 01:53:31 +00:00
parent 2b03c79d48
commit 989f5036fc
2 changed files with 2 additions and 2 deletions

View File

@ -1730,7 +1730,7 @@ int main(int argc, char *argv[])
#endif #endif
// Read preferences // Read preferences
PrefsInit(argc, argv); PrefsInit(NULL, argc, argv);
// Show preferences editor // Show preferences editor
bool start = PrefsEditor(); bool start = PrefsEditor();

View File

@ -267,7 +267,7 @@ int main(int argc, char **argv)
} }
// Read preferences // Read preferences
PrefsInit(argc, argv); PrefsInit(NULL, argc, argv);
// Boot MacOS from CD-ROM? // Boot MacOS from CD-ROM?
if (cd_boot) if (cd_boot)