Diff for /xmil/win9x/xmil.cpp between versions 1.5 and 1.7

version 1.5, 2004/08/04 15:18:26 version 1.7, 2004/08/05 11:30:12
Line 22 Line 22
   
 #include        "z80core.h"  #include        "z80core.h"
 #include        "pccore.h"  #include        "pccore.h"
 #include        "x1_io.h"  #include        "iocore.h"
 #include        "x1_crtc.h"  
 #include        "timing.h"  #include        "timing.h"
 #include        "draw.h"  #include        "draw.h"
 #include        "fdd_ini.h"  #include        "fdd_ini.h"
Line 259  LRESULT CALLBACK WndProc(HWND hWnd, UINT Line 258  LRESULT CALLBACK WndProc(HWND hWnd, UINT
                                         break;                                          break;
   
                                 case IDM_WIDTH80:                                  case IDM_WIDTH80:
                                         crtc.TXT_XL = 80;                                          crtc.s.TXT_XL = 80;
                                         crtc.GRP_XL = 640;                                          crtc.s.GRP_XL = 640;
                                         vrambank_patch();                                          vrambank_patch();
                                         scrnallflash = 1;                                          scrnallflash = 1;
                                         break;                                          break;
   
                                 case IDM_WIDTH40:                                  case IDM_WIDTH40:
                                         crtc.TXT_XL = 40;                                          crtc.s.TXT_XL = 40;
                                         crtc.GRP_XL = 320;                                          crtc.s.GRP_XL = 320;
                                         vrambank_patch();                                          vrambank_patch();
                                         scrnallflash = 1;                                          scrnallflash = 1;
                                         break;                                          break;
Line 726  int WINAPI WinMain(HINSTANCE hInstance,  Line 725  int WINAPI WinMain(HINSTANCE hInstance, 
         juliet_load();          juliet_load();
         juliet_prepare();          juliet_prepare();
   
         juliet2_reset();  //      juliet2_reset();
         if (soundmng_initialize() == SUCCESS) {          if (soundmng_initialize() == SUCCESS) {
                 soundmng_pcmload(SOUND_PCMSEEK, OEMTEXT("fddseek.wav"), 0);                  soundmng_pcmload(SOUND_PCMSEEK, OEMTEXT("fddseek.wav"), 0);
                 soundmng_pcmload(SOUND_PCMSEEK1, OEMTEXT("fddseek1.wav"), 0);                  soundmng_pcmload(SOUND_PCMSEEK1, OEMTEXT("fddseek1.wav"), 0);
Line 775  int WINAPI WinMain(HINSTANCE hInstance,  Line 774  int WINAPI WinMain(HINSTANCE hInstance, 
                                         timing_setcount(0);                                          timing_setcount(0);
                                         joymng_sync();                                          joymng_sync();
                                         mousemng_sync();                                          mousemng_sync();
                                         juliet2_sync(25);  //                                      juliet2_sync(25);
                                         x1r_exec();                                          x1r_exec();
                                         x1f_sync();                                          x1f_sync();
                                 }                                  }
                                 soundmng_sync();                                  soundmng_sync();
                                 juliet2_exec();  //                              juliet2_exec();
                         }                          }
                 }                  }
                 else {                  else {

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


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