diff --git a/Constructions.cpp b/Constructions.cpp index b2c02a6a..d485750e 100644 --- a/Constructions.cpp +++ b/Constructions.cpp @@ -42,6 +42,7 @@ bool readConstructionsToTile( Tile* b, const Stonesense_Building* building ) constructedTiletype = df::tiletype::ConstructedFortification; break; case construction_type::Wall: + case construction_type::ReinforcedWall: constructedTiletype = df::tiletype::ConstructedPillar; break; case construction_type::Floor: diff --git a/GUI.cpp b/GUI.cpp index 31bac874..853b33eb 100644 --- a/GUI.cpp +++ b/GUI.cpp @@ -575,7 +575,6 @@ namespace } void drawDebugInfo(WorldSegment* segment) { - using df::global::plotinfo; auto font = stonesenseState.font; auto fontHeight = al_get_font_line_height(font); auto& contentLoader = stonesenseState.contentLoader; diff --git a/docs/changelog.txt b/docs/changelog.txt index 90b75a37..f518c3b5 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -42,6 +42,7 @@ Template for new versions: ## Fixes ## Misc Improvements +- `stonesense`: queued constructions of reinforced walls are now visible ## Removed