Diff for /np2/macosx/np2.cpp between versions 1.2 and 1.4

version 1.2, 2003/10/17 03:52:24 version 1.4, 2003/10/17 07:17:20
Line 507  static void processwait(UINT waitcnt) { Line 507  static void processwait(UINT waitcnt) {
         if (timing_getcount() >= waitcnt) {          if (timing_getcount() >= waitcnt) {
                 timing_setcount(0);                  timing_setcount(0);
                 framecnt = 0;                  framecnt = 0;
                 if (np2oscfg.DISPCLK & 2) {                  if (np2oscfg.DISPCLK & 3) {
                         if (sysmng_workclockrenewal()) {                          if (sysmng_workclockrenewal()) {
                                 sysmng_updatecaption(2);                                  sysmng_updatecaption(3);
                         }                          }
                 }                  }
         }          }
Line 533  static void flagsave(const char *ext) { Line 533  static void flagsave(const char *ext) {
 static void flagload(const char *ext) {  static void flagload(const char *ext) {
   
         char    path[MAX_PATH];          char    path[MAX_PATH];
           char    buf[1024];
           int             ret;
   
         getstatfilename(path, ext, sizeof(path));          getstatfilename(path, ext, sizeof(path));
         statsave_load(path);          ret = statsave_check(path, buf, sizeof(buf));
           if (ret == NP2FLAG_SUCCESS) {
                   statsave_load(path);
           }
 }  }
   
 int main(int argc, char *argv[]) {  int main(int argc, char *argv[]) {

Removed from v.1.2  
changed lines
  Added in v.1.4


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