Ignore:
Timestamp:
2000-02-03T14:45:48+13:00 (24 years ago)
Author:
sjboddie
Message:

lots of stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/w32server/locate.cpp

    r611 r902  
    5252{
    5353  if (log_file != NULL) fclose(log_file);
    54   log_file = fopen(gs_log_name, "a");
     54  log_file = fopen(gsdl_log_name, "a");
    5555  if (log_file != NULL) {
    5656      fprintf (log_file, "\n\n-----------\n");
     
    7575void activate_console(void)
    7676{
    77   gs_show_console = 1;
     77  gsdl_show_console = 1;
    7878  next_console = console_buffer;
    7979  *next_console = 0;
     
    8686void deactivate_console(void)
    8787{
    88   gs_show_console = 0;
     88  gsdl_show_console = 0;
    8989  InvalidateRect(GSDL_Window,NULL,TRUE);
    9090}
     
    189189    fflush(log_file);
    190190    }
    191   if (gs_show_console) {
     191  if (gsdl_show_console) {
    192192    char buffer[1024];  HDC dc;
    193193    sprintf(buffer,"%s",msg);
     
    210210
    211211  // these messages are not send to the console
    212   if (gs_show_console) {
     212  if (gsdl_show_console) {
    213213    HDC dc;
    214214    dc = GetDC(GSDL_Window);
Note: See TracChangeset for help on using the changeset viewer.