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

version 1.12, 2004/01/23 14:35:45 version 1.15, 2004/03/25 15:10:33
Line 37 Line 37
 #include "kdispwin.h"  #include "kdispwin.h"
 #include "toolwin.h"  #include "toolwin.h"
 #include "viewer.h"  #include "viewer.h"
   #include "debugwin.h"
   
 #include "commng.h"  #include "commng.h"
 #include "joymng.h"  #include "joymng.h"
Line 72  NP2OSCFG np2oscfg = { Line 73  NP2OSCFG np2oscfg = {
         { 0, 0, 0, 0 },         /* JOY1BTN */          { 0, 0, 0, 0 },         /* JOY1BTN */
   
         { COMPORT_MIDI, 0, 0x3e, 19200, "", "", "", "" },       /* mpu */          { COMPORT_MIDI, 0, 0x3e, 19200, "", "", "", "" },       /* mpu */
           {
                   { COMPORT_NONE, 0, 0x3e, 19200, "", "", "", "" },/* com1 */
                   { COMPORT_NONE, 0, 0x3e, 19200, "", "", "", "" },/* com2 */
                   { COMPORT_NONE, 0, 0x3e, 19200, "", "", "", "" },/* com3 */
           },
   
         0,                      /* confirm */          0,                      /* confirm */
   
Line 201  flagload(const char* ext, const char* ti Line 207  flagload(const char* ext, const char* ti
   
         getstatfilename(path, ext, sizeof(path));          getstatfilename(path, ext, sizeof(path));
         ret = statsave_check(path, buf, sizeof(buf));          ret = statsave_check(path, buf, sizeof(buf));
         if (ret & (~NP2FLAG_DISKCHG)) {          if (ret & (~STATFLAG_DISKCHG)) {
                 fprintf(stderr, "Couldn't restart\n");                  fprintf(stderr, "Couldn't restart\n");
                 rv = 1;                  rv = 1;
         } else if ((!force) && (ret & NP2FLAG_DISKCHG)) {          } else if ((!force) && (ret & STATFLAG_DISKCHG)) {
                 fprintf(stderr, "Conflict\n");                  fprintf(stderr, "Conflict\n");
                 rv = 1;                  rv = 1;
         }          }
Line 275  framereset(UINT cnt) Line 281  framereset(UINT cnt)
         kdispwin_draw((BYTE)cnt);          kdispwin_draw((BYTE)cnt);
         toolwin_draw((BYTE)cnt);          toolwin_draw((BYTE)cnt);
         viewer_allreload(FALSE);          viewer_allreload(FALSE);
           debugwin_process();
         if (np2oscfg.DISPCLK & 3) {          if (np2oscfg.DISPCLK & 3) {
                 if (sysmng_workclockrenewal()) {                  if (sysmng_workclockrenewal()) {
                         sysmng_updatecaption(3);                          sysmng_updatecaption(3);

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


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