Changeset 1901 in orxonox.OLD for orxonox/branches/showroom/Showroom/3ds.cpp
- Timestamp:
- May 23, 2004, 11:24:47 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/showroom/Showroom/3ds.cpp
r1869 r1901 56 56 { 57 57 sprintf(strMessage, "Unable to find the file: %s!", strFileName); 58 MessageBox(NULL, strMessage, "Error", MB_OK); 58 /* linuxFix by pb: no MessageBox known by linux */ 59 //MessageBox(NULL, strMessage, "Error", MB_OK); 59 60 return false; 60 61 } … … 71 72 { 72 73 sprintf(strMessage, "Unable to load PRIMARY chuck from file: %s!", strFileName); 73 MessageBox(NULL, strMessage, "Error", MB_OK); 74 /* linuxFix by pb: MessageBox not known... */ 75 //MessageBox(NULL, strMessage, "Error", MB_OK); 74 76 return false; 75 77 } … … 146 148 // If the file version is over 3, give a warning that there could be a problem 147 149 if ((currentChunk.length - currentChunk.bytesRead == 4) && (gBuffer[0] > 0x03)) { 148 MessageBox(NULL, "This 3DS file is over version 3 so it may load incorrectly", "Warning", MB_OK); 150 /* linuxFix by pb: MessageBox not know, using cout */ 151 //MessageBox(NULL, "This 3DS file is over version 3 so it may load incorrectly", "Warning", MB_OK); 152 //sprintf("This 3DS file is over version 3 so it may load incorrectly"); 149 153 } 150 154 break;
Note: See TracChangeset
for help on using the changeset viewer.