Diff for /np2/win9xc/np2.cpp between versions 1.29 and 1.31

version 1.29, 2004/03/31 14:02:51 version 1.31, 2005/02/07 14:46:15
Line 69  static UINT  waitcnt = 0; Line 69  static UINT  waitcnt = 0;
 static  UINT            framemax = 1;  static  UINT            framemax = 1;
 static  int                     np2opening = 1;  static  int                     np2opening = 1;
 static  int                     np2quitmsg = 0;  static  int                     np2quitmsg = 0;
 static  BYTE    scrnmode;  static  UINT8   scrnmode;
   
   
 static const char np2help[] = "np2.chm";  static const char np2help[] = "np2.chm";
Line 88  static void winuileave(void) { Line 88  static void winuileave(void) {
         soundmng_enable(SNDPROC_MAIN);          soundmng_enable(SNDPROC_MAIN);
 }  }
   
 static void changescreen(BYTE newmode) {  static void changescreen(UINT8 newmode) {
   
         BYTE    change;          UINT8   change;
         BYTE    renewal;          UINT8   renewal;
   
         change = scrnmode ^ newmode;          change = scrnmode ^ newmode;
         renewal = (change & SCRNMODE_FULLSCREEN);          renewal = (change & SCRNMODE_FULLSCREEN);
Line 826  static void framereset(void) { Line 826  static void framereset(void) {
         framecnt = 0;          framecnt = 0;
         sysmng_updatecaption();          sysmng_updatecaption();
         memdbg_process();          memdbg_process();
           skbdwin_process();
 }  }
   
 static void processwait(UINT cnt) {  static void processwait(UINT cnt) {

Removed from v.1.29  
changed lines
  Added in v.1.31


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