Remove obsolete advice about level saving

Levels are no longer maintained under DOS.  Remove the obsolete advice.
This commit is contained in:
Kp 2013-06-09 17:23:05 +00:00
parent a85927fc68
commit 0493a80ba3

View file

@ -1472,12 +1472,7 @@ int save_level_sub(char * filename, int compiled_version)
{
char ErrorMessage[256];
char fname[20];
d_splitpath( temp_filename, NULL, NULL, fname, NULL );
sprintf( ErrorMessage, \
"ERROR: Cannot write to '%s'.\nYou probably need to check out a locked\nversion of the file. You should save\nthis under a different filename, and then\ncheck out a locked copy by typing\n\'co -l %s.lvl'\nat the DOS prompt.\n"
, temp_filename, fname );
snprintf( ErrorMessage, sizeof(ErrorMessage), "ERROR: Cannot write to '%s'.", temp_filename);
gr_palette_load(gr_palette);
nm_messagebox( NULL, 1, "Ok", ErrorMessage );
return 1;