Ignore:
Timestamp:
Oct 10, 1999, 10:58:51 AM (26 years ago)
Author:
sandervl
Message:

Better error msg

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/peldr/pe.cpp

    r1002 r1239  
    1 /* $Id: pe.cpp,v 1.9 1999-09-21 18:35:01 sandervl Exp $ */
     1/* $Id: pe.cpp,v 1.10 1999-10-10 08:58:51 sandervl Exp $ */
    22
    33/*
     
    3131char INFO_BANNER[]      = "Usage: PE winexe commandline";
    3232char szErrorTitle[]     = "Odin";
    33 char szMemErrorMsg[]    = "Memory allocation failure";
     33char szLoadErrorMsg[]   = "Can't load executable";
    3434char szFileErrorMsg[]   = "File IO error";
    3535char szPEErrorMsg[]     = "Not a valid win32 exe. (perhaps 16 bits windows)";
     
    9696  }
    9797  if(CreateWin32Exe(exeName, ReserveMem()) == FALSE) {
    98         MyWinMessageBox(HWND_DESKTOP, HWND_DESKTOP, szMemErrorMsg, szErrorTitle, 0, MB_OK | MB_ERROR | MB_MOVEABLE);
     98        MyWinMessageBox(HWND_DESKTOP, HWND_DESKTOP, szLoadErrorMsg, szErrorTitle, 0, MB_OK | MB_ERROR | MB_MOVEABLE);
    9999        goto fail;
    100100  }
Note: See TracChangeset for help on using the changeset viewer.