From a5fdb9f7c852743d2d3c29d2db8862249929e3a0 Mon Sep 17 00:00:00 2001 From: Steven Fuller Date: Sun, 5 Aug 2001 05:51:56 +0000 Subject: Now in the Data loading phase. Converted many '\\' to '/'. Partially implemented win32 file routines. Got texture code to work OK for now (still needs to be reimplemented). Partially implemented the main loop. --- src/win95/db.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/win95/db.c') diff --git a/src/win95/db.c b/src/win95/db.c index e3ee6d4..13fc187 100644 --- a/src/win95/db.c +++ b/src/win95/db.c @@ -79,7 +79,7 @@ int db_option = 0; /* Default is off. */ #define PROP_WIDTH 0 /* Logfile name */ -#define LOGFILE_NAME "LOGFILE.TXT" +#define LOGFILE_NAME "logfile.txt" /* Set this to 1 if the logfile name is an absolute path. Otherwise the * logfile will go in the directory that is current when db_log_init() @@ -405,7 +405,8 @@ void db_log_init(void) sprintf( LogFileNameP, "%s", db_log_file_name ); #else /* Append the log file name to the current working directory. */ - sprintf( LogFileNameP, "%s\\%s", getcwd( LogFileNameP, 240 ), +/* TODO - path seperator */ + sprintf( LogFileNameP, "%s/%s", getcwd( LogFileNameP, 240 ), db_log_file_name ); #endif -- cgit v1.3