omit warning about startup.blend being missing when loading with '--factory-startup'

This commit is contained in:
Campbell Barton
2013-02-09 13:58:37 +00:00
parent 00212f2b1f
commit fd145b4df1

View File

@@ -520,14 +520,15 @@ int wm_homefile_read(bContext *C, ReportList *UNUSED(reports), short from_memory
/* put aside screens to match with persistent windows later */
wm_window_match_init(C, &wmbase);
if (!from_memory && BLI_exists(startstr)) {
success = (BKE_read_file(C, startstr, NULL) != BKE_READ_FILE_FAIL);
}
if (U.themes.first == NULL) {
printf("\nNote: No (valid) "STRINGIFY (BLENDER_STARTUP_FILE)" found, fall back to built-in default.\n\n");
success = 0;
if (!from_memory) {
if (BLI_exists(startstr)) {
success = (BKE_read_file(C, startstr, NULL) != BKE_READ_FILE_FAIL);
}
if (U.themes.first == NULL) {
printf("\nNote: No (valid) '%s' found, fall back to built-in default.\n\n", startstr);
success = 0;
}
}
if (success == 0) {