Diff for /np2/x11/np2.c between versions 1.7 and 1.12

version 1.7, 2003/12/11 15:11:56 version 1.12, 2004/01/23 14:35:45
Line 31 Line 31
 #include "pccore.h"  #include "pccore.h"
 #include "dosio.h"  #include "dosio.h"
 #include "scrndraw.h"  #include "scrndraw.h"
 #include "statsave.h"  
 #include "timing.h"  #include "timing.h"
 #include "toolkit.h"  #include "toolkit.h"
   
Line 46 Line 45
 #include "scrnmng.h"  #include "scrnmng.h"
 #include "soundmng.h"  #include "soundmng.h"
 #include "sysmng.h"  #include "sysmng.h"
   #include "taskmng.h"
   
   
 NP2OSCFG np2oscfg = {  NP2OSCFG np2oscfg = {
Line 59  NP2OSCFG np2oscfg = { Line 59  NP2OSCFG np2oscfg = {
         0,                      /* paddingy */          0,                      /* paddingy */
   
         0,                      /* NOWAIT */          0,                      /* NOWAIT */
         2,                      /* DRAW_SKIP */          0,                      /* DRAW_SKIP */
   
         0,                      /* DISPCLK */          0,                      /* DISPCLK */
   
         KEY_KEY106,             /* KEYBOARD */          KEY_KEY106,             /* KEYBOARD */
         0,                      /* F12COPY */          0,                      /* F12KEY */
   
         0,                      /* MOUSE_SW */          0,                      /* MOUSE_SW */
         0,                      /* JOYPAD1 */          0,                      /* JOYPAD1 */
Line 81  NP2OSCFG np2oscfg = { Line 81  NP2OSCFG np2oscfg = {
         0,                      /* toolwin */          0,                      /* toolwin */
         0,                      /* keydisp */          0,                      /* keydisp */
         0,                      /* hostdrv_write */          0,                      /* hostdrv_write */
           0,                      /* jastsnd */
         0,                      /* I286SAVE */          0,                      /* I286SAVE */
   
         SNDDRV_NODRV,           /* snddrv */          SNDDRV_NODRV,           /* snddrv */
Line 92  NP2OSCFG np2oscfg = { Line 93  NP2OSCFG np2oscfg = {
   
 #if defined(USE_GTK)            /* toolkit */  #if defined(USE_GTK)            /* toolkit */
         "gtk",          "gtk",
 #else  #elif defined(USE_QT)
         "qt",          "qt",
   #elif defined(USE_SDL)
           "sdl",
   #else
           "unknown",
 #endif  #endif
   
         MMXFLAG_DISABLE,        /* disablemmx */          MMXFLAG_DISABLE,        /* disablemmx */
Line 121  char statpath[MAX_PATH]; Line 126  char statpath[MAX_PATH];
 #endif  #endif
 char fontname[1024] = FONTFACE;  char fontname[1024] = FONTFACE;
   
   #ifndef FONTNAME_DEFAULT
   #define FONTNAME_DEFAULT        "./default.ttf"
   #endif
   char fontfilename[MAX_PATH] = FONTNAME_DEFAULT;
   
 char timidity_cfgfile_path[MAX_PATH];  char timidity_cfgfile_path[MAX_PATH];
   
 BOOL use_shared_pixmap;  BOOL use_shared_pixmap;
Line 280  processwait(UINT cnt) Line 290  processwait(UINT cnt)
                 timing_setcount(0);                  timing_setcount(0);
                 framereset(cnt);                  framereset(cnt);
         } else {          } else {
                 usleep(1);                  taskmng_sleep(1);
         }          }
 }  }
   

Removed from v.1.7  
changed lines
  Added in v.1.12


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