Diff for /np2/x11/np2.c between versions 1.22 and 1.25

version 1.22, 2004/07/26 15:53:26 version 1.25, 2007/01/12 16:41:25
Line 10 Line 10
  * 2. Redistributions in binary form must reproduce the above copyright   * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the   *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.   *    documentation and/or other materials provided with the distribution.
  * 3. The name of the author may not be used to endorse or promote products  
  *    derived from this software without specific prior written permission.  
  *   *
  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR   * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES   * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
Line 109  NP2OSCFG np2oscfg = { Line 107  NP2OSCFG np2oscfg = {
   
         MOUSE_RATIO_100,        /* mouse_move_ratio */          MOUSE_RATIO_100,        /* mouse_move_ratio */
   
 #if defined(USE_GTK)            /* toolkit */  
         "gtk",  
 #elif defined(USE_QT)  
         "qt",  
 #elif defined(USE_SDL)  
         "sdl",  
 #else  
         "unknown",  
 #endif  
   
         MMXFLAG_DISABLE,        /* disablemmx */          MMXFLAG_DISABLE,        /* disablemmx */
         FALSE,                  /* shared_pixmap */  
 };  };
   
 volatile BOOL np2running = FALSE;  volatile sig_atomic_t np2running = 0;
 BYTE scrnmode = 0;  BYTE scrnmode = 0;
   
 UINT framecnt = 0;  UINT framecnt = 0;
Line 151  char fontfilename[MAX_PATH] = FONTNAME_D Line 138  char fontfilename[MAX_PATH] = FONTNAME_D
   
 char timidity_cfgfile_path[MAX_PATH];  char timidity_cfgfile_path[MAX_PATH];
   
 BOOL use_shared_pixmap = FALSE;  int verbose = 0;
   
   
 UINT32  UINT32

Removed from v.1.22  
changed lines
  Added in v.1.25


RetroPC.NET-CVS <cvs@retropc.net>