mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 09:21:36 +00:00
Lunatic: disallow saving map-text files in Mapster32 for now.
git-svn-id: https://svn.eduke32.com/eduke32@4329 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
23ecf8cce0
commit
15e141452e
1 changed files with 5 additions and 1 deletions
|
@ -10970,7 +10970,11 @@ int32_t saveboard(const char *filename, const vec3_t *dapos, int16_t daang, int1
|
|||
|
||||
#ifdef NEW_MAP_FORMAT
|
||||
if (numyaxbunches > 0)
|
||||
return saveboard_maptext(filename, dapos, daang, dacursectnum);
|
||||
{
|
||||
initprintf("Saving of TROR maps not yet accessible in the Lunatic preview build\n");
|
||||
return -1;
|
||||
// return saveboard_maptext(filename, dapos, daang, dacursectnum);
|
||||
}
|
||||
#endif
|
||||
|
||||
fil = Bopen(filename, BO_BINARY|BO_TRUNC|BO_CREAT|BO_WRONLY, BS_IREAD|BS_IWRITE);
|
||||
|
|
Loading…
Reference in a new issue