mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-19 07:20:50 +00:00
[qwaq] Drop qwaq-graphics.log
For now, at least. The client console takes over Sys_Printf and breaks the logging.
This commit is contained in:
parent
2cb987fdb5
commit
8e08f5f84e
1 changed files with 0 additions and 11 deletions
|
@ -46,14 +46,6 @@ static progsinit_f secondary_app[] = {
|
|||
0
|
||||
};
|
||||
#endif
|
||||
static FILE *logfile;
|
||||
|
||||
static __attribute__((format(PRINTF, 1, 0))) void
|
||||
qwaq_print (const char *fmt, va_list args)
|
||||
{
|
||||
vfprintf (logfile, fmt, args);
|
||||
fflush (logfile);
|
||||
}
|
||||
|
||||
int
|
||||
qwaq_init_threads (qwaq_thread_set_t *thread_data)
|
||||
|
@ -62,9 +54,6 @@ qwaq_init_threads (qwaq_thread_set_t *thread_data)
|
|||
size_t memsize = 8 * 1024 * 1024;
|
||||
memhunk_t *hunk = Memory_Init (Sys_Alloc (memsize), memsize);
|
||||
|
||||
logfile = fopen ("qwaq-graphics.log", "wt");
|
||||
Sys_SetStdPrintf (qwaq_print);
|
||||
|
||||
for (size_t i = 1, thread_ind = 0; i < thread_data->size; i++) {
|
||||
qwaq_thread_t *thread = thread_data->a[i];
|
||||
progsinit_f *app_funcs = 0;//secondary_app;
|
||||
|
|
Loading…
Reference in a new issue