Diff for /np2/win9x/dialog/d_sound.cpp between versions 1.4 and 1.6

version 1.4, 2003/10/22 14:13:25 version 1.6, 2003/10/30 12:45:38
Line 5 Line 5
 #include        "strres.h"  #include        "strres.h"
 #include        "resource.h"  #include        "resource.h"
 #include        "np2.h"  #include        "np2.h"
   #include        "dosio.h"
 #include        "joymng.h"  #include        "joymng.h"
 #include        "sysmng.h"  #include        "sysmng.h"
 #include        "menu.h"  #include        "menu.h"
Line 1071  void dialog_sndopt(HWND hWnd) { Line 1072  void dialog_sndopt(HWND hWnd) {
   
         ZeroMemory(&psh, sizeof(psh));          ZeroMemory(&psh, sizeof(psh));
         psh.dwSize = sizeof(PROPSHEETHEADER);          psh.dwSize = sizeof(PROPSHEETHEADER);
         psh.dwFlags = PSH_NOAPPLYNOW;          psh.dwFlags = PSH_NOAPPLYNOW | PSH_USEHICON;
         psh.hwndParent = hWnd;          psh.hwndParent = hWnd;
         psh.hInstance = hinst;          psh.hInstance = hinst;
         psh.nPages = 6;                                                                                                 // ver0.29          psh.hIcon = LoadIcon(hinst, MAKEINTRESOURCE(IDI_ICON2));
           psh.nPages = 6;
         psh.phpage = hpsp;          psh.phpage = hpsp;
         psh.pszCaption = str_sndopt;          psh.pszCaption = str_sndopt;
         PropertySheet(&psh);          PropertySheet(&psh);
Line 1093  static const FILESEL s98ui = {s98ui_titl Line 1095  static const FILESEL s98ui = {s98ui_titl
 void dialog_s98(HWND hWnd) {  void dialog_s98(HWND hWnd) {
   
         BOOL    check;          BOOL    check;
 const char      *p;          char    path[MAX_PATH];
   
         S98_close();          S98_close();
         check = FALSE;          check = FALSE;
         p = dlgs_selectwritenum(hWnd, &s98ui, s98ui_file,          file_cpyname(path, bmpfilefolder, sizeof(path));
                                                                         bmpfilefolder, sizeof(bmpfilefolder));          file_cutname(path);
         if ((p != NULL) && (S98_open(p) == SUCCESS)) {          file_catname(path, s98ui_file, sizeof(path));
           if ((dlgs_selectwritenum(hWnd, &s98ui, path, sizeof(path))) &&
                   (S98_open(path) == SUCCESS)) {
                   file_cpyname(bmpfilefolder, path, sizeof(bmpfilefolder));
                   sysmng_update(SYS_UPDATEOSCFG);
                 check = TRUE;                  check = TRUE;
         }          }
         xmenu_sets98logging(check);          xmenu_sets98logging(check);

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


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