Changeset 91 for trunk/gotcha.cpp
- Timestamp:
- Oct 2, 2020, 11:01:19 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gotcha.cpp
r89 r91 114 114 HMQ hmq = WinCreateMsgQueue (hab, 0); 115 115 116 // Load settings move up here so the string table is available for the already running error116 // Load settings moved up here so the string table is available for the already running error 117 117 pset = new SETTINGS; 118 118 //DisplayError("DEBUG", "%d", Version()); … … 120 120 if ((Version() < 2)) 121 121 { 122 DisplayError("GOTCHDLL.DLL Outdated", 123 "The file gotchdll.dll is is outdated. You should have " 124 "received a new version with the program, check for an " 125 "older version of gotchdll.dll in your LIBPATH. Is the " 126 "new gotchdll.dll in a directory in your LIBPATH?"); 122 DisplayError(RSTR (IDS_ERROR_DLLOUTDATED), 123 RSTR (IDS_ERROR_DLLOUTDATEDMSG)); 127 124 exit (0); 128 125 } … … 138 135 rc = DosCreateMutexSem("\\SEM32\\GOTCHA", &hmtx, 0, FALSE); 139 136 if (rc) { 140 DisplayError( "Semaphore creation failed",141 "Try restarting Gotcha Quiet");137 DisplayError(RSTR (IDS_ERROR_SEMAPHOREFAILED), 138 RSTR (IDS_ERROR_SEMAPHOREFAILEDMSG)); 142 139 exit (0); 143 140 }
Note:
See TracChangeset
for help on using the changeset viewer.