From 29d73f4dd59554a349aa8e86e5ea65f28c912ec9 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Mon, 24 Aug 2026 19:31:36 -0700 Subject: Started doing texel eval tuning. --- src/main.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 1247311..01c8d26 100755 --- a/src/main.c +++ b/src/main.c @@ -295,7 +295,7 @@ Return value: g_Options.fNoInputThread = FALSE; g_Options.fVerbosePosting = TRUE; strcpy(g_Options.szEGTBPath, "/zscratch/egtb"); - strcpy(g_Options.szLogfile, "typhoon.log"); + strcpy(g_Options.szLogfile, "/usr/local/tmp/typhoon.log"); strcpy(g_Options.szBookName, "book.bin"); g_Options.uNumHashTableEntries = 0x10000; g_Options.uNumProcessors = 1; @@ -356,9 +356,9 @@ Return value: { g_Options.fNoInputThread = TRUE; } - else if ((!STRCMPI(argv[i], "--dnafile")) && (argc > i)) + else if ((!STRCMPI(argv[i], "--dnafile")) && (argc > i)) { - if (!ReadEvalDNA(argv[i+1])) + if (!ReadEvalDNA(argv[i+1])) { UtilPanic(INITIALIZATION_FAILURE, (void *)"Bad DNA file", @@ -367,6 +367,10 @@ Return value: NULL, __FILE__, __LINE__); } + else + { + Trace("Loaded dna file \"%s\"\n", argv[i+1]); + } i++; } else if ((!STRCMPI(argv[i], "--logfile")) && (argc > i)) -- cgit v1.3