mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-18 18:55:29 +02:00
Fix build since: "Remove referenced schematics from Decorations on clear"
Fixes build, which has been broken for all platforms (except BSD?) since
grandparent 406d9ba87b
.
Thanks to @SmallJoker for pointing out a solution.
This commit is contained in:
@@ -18,6 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
#include <typeinfo>
|
||||||
#include "mg_schematic.h"
|
#include "mg_schematic.h"
|
||||||
#include "gamedef.h"
|
#include "gamedef.h"
|
||||||
#include "mapgen.h"
|
#include "mapgen.h"
|
||||||
@@ -53,7 +54,7 @@ void SchematicManager::clear()
|
|||||||
DecoSchematic *dschem = dynamic_cast<DecoSchematic *>(deco);
|
DecoSchematic *dschem = dynamic_cast<DecoSchematic *>(deco);
|
||||||
if (dschem)
|
if (dschem)
|
||||||
dschem->schematic = NULL;
|
dschem->schematic = NULL;
|
||||||
} catch(std::bad_cast) {
|
} catch (std::bad_cast) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user