Diff for /np2/win9xc/np2.cpp between versions 1.2 and 1.8

version 1.2, 2003/10/18 10:00:29 version 1.8, 2003/11/06 01:58:36
Line 1 Line 1
 #include        "compiler.h"  #include        "compiler.h"
 #include        <time.h>  #include        <time.h>
 #include        <winnls32.h>  #include        <winnls32.h>
 #include        "resource.h"  
 #include        "strres.h"  #include        "strres.h"
   #include        "parts.h"
   #include        "resource.h"
 #include        "np2.h"  #include        "np2.h"
 #include        "np2arg.h"  #include        "np2arg.h"
 #include        "dosio.h"  #include        "dosio.h"
Line 724  LRESULT CALLBACK WndProc(HWND hWnd, UINT Line 725  LRESULT CALLBACK WndProc(HWND hWnd, UINT
         return(0L);          return(0L);
 }  }
   
   static void framereset(void) {
   
           framecnt = 0;
           sysmng_updatecaption();
   }
   
 static void processwait(UINT waitcnt) {  static void processwait(UINT waitcnt) {
   
         if (timing_getcount() >= waitcnt) {          if (timing_getcount() >= waitcnt) {
                 timing_setcount(0);                  timing_setcount(0);
                 framecnt = 0;                  framereset();
         }          }
         else {          else {
                 Sleep(1);                  Sleep(1);
Line 754  int WINAPI WinMain(HINSTANCE hInstance,  Line 760  int WINAPI WinMain(HINSTANCE hInstance, 
         np2arg_analize(lpszCmdLine);                            // タイミング修正       // ver0.29          np2arg_analize(lpszCmdLine);                            // タイミング修正       // ver0.29
         initload();          initload();
   
         srand((unsigned)time(NULL));          rand_setseed((unsigned)time(NULL));
   
 //      np2arg_analize(lpszCmdLine);  
   
         if ((hwndorg = FindWindow(szClassName, NULL)) != NULL) {          if ((hwndorg = FindWindow(szClassName, NULL)) != NULL) {
                 ShowWindow(hwndorg, SW_RESTORE);                  ShowWindow(hwndorg, SW_RESTORE);
Line 930  int WINAPI WinMain(HINSTANCE hInstance,  Line 934  int WINAPI WinMain(HINSTANCE hInstance, 
                         }                          }
                         else {                                                          // auto skip                          else {                                                          // auto skip
                                 if (!waitcnt) {                                  if (!waitcnt) {
                                           UINT cnt;
                                         joy_flash();                                          joy_flash();
                                         mouse_callback();                                          mouse_callback();
                                         pccore_exec(framecnt == 0);                                          pccore_exec(framecnt == 0);
                                         framecnt++;                                          framecnt++;
                                         if (timing_getcount() < framecnt) {                                          cnt = timing_getcount();
                                           if (framecnt > cnt) {
                                                 waitcnt = framecnt;                                                  waitcnt = framecnt;
                                                 if (framemax > 1) {                                                  if (framemax > 1) {
                                                         framemax--;                                                          framemax--;
                                                 }                                                  }
                                         }                                          }
                                         else if (framecnt >= framemax) {                                          else if (framecnt >= framemax) {
                                                 waitcnt = framecnt;  
                                                 if (framemax < 12) {                                                  if (framemax < 12) {
                                                         framemax++;                                                          framemax++;
                                                 }                                                  }
                                                   if (cnt >= 12) {
                                                           timing_reset();
                                                   }
                                                   else {
                                                           timing_setcount(cnt - framecnt);
                                                   }
                                                   framereset();
                                         }                                          }
                                 }                                  }
                                 else {                                  else {

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


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