Diff for /np2/macosx/dialog/macalert.cpp between versions 1.3 and 1.4

version 1.3, 2003/11/11 16:33:51 version 1.4, 2003/11/21 16:01:41
Line 35  void ResumeErrorDialogProc(void) { Line 35  void ResumeErrorDialogProc(void) {
           
     GetStandardAlertDefaultParams(&param, kStdCFStringAlertVersionOne);         GetStandardAlertDefaultParams(&param, kStdCFStringAlertVersionOne);   
     CreateStandardAlert(kAlertStopAlert, CFCopyLocalizedString(CFSTR("Couldn't restart"), "Resume Error Message"),       CreateStandardAlert(kAlertStopAlert, CFCopyLocalizedString(CFSTR("Couldn't restart"), "Resume Error Message"), 
                                          CFCopyLocalizedString(CFSTR("A resume error occured when loading the np2.sav file. So Neko Project II couldn't restart."), "Resume Error Description"),                                           CFCopyLocalizedString(CFSTR("An error occured when reading the np2.sav file. Neko Project IIx couldn't restart."), "Resume Error Description"),
                                          &param, &ret);                                           &param, &ret);
     SysBeep(0);      SysBeep(0);
     RunStandardAlert(ret, NULL, &hit);      RunStandardAlert(ret, NULL, &hit);
Line 44  void ResumeErrorDialogProc(void) { Line 44  void ResumeErrorDialogProc(void) {
 int ResumeWarningDialogProc(const char *string) {  int ResumeWarningDialogProc(const char *string) {
     SInt16      ret;      SInt16      ret;
           
     ret = showCautionAlert(     CFCopyLocalizedString(CFSTR("Save Data Conflict"), "bad data"),       ret = showCautionAlert(     CFCopyLocalizedString(CFSTR("The Save Data file is conflicting"), "bad data"), 
                             CFStringCreateWithCString(NULL, string, CFStringGetSystemEncoding()),                               CFStringCreateWithCString(NULL, string, CFStringGetSystemEncoding()), 
                             CFCopyLocalizedString(CFSTR("Continue"), "OK"));                              CFCopyLocalizedString(CFSTR("Continue"), "OK"));
     if (ret = kAlertStdAlertOKButton) {      if (ret = kAlertStdAlertOKButton) {

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


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