Disable header maps in Xcode 12

This commit is contained in:
2022-07-07 23:19:58 -04:00
parent a69d92d8dc
commit 5b2561d034
143 changed files with 534 additions and 526 deletions

View File

@@ -11,7 +11,7 @@
#include <iosfwd>
#include "location.hpp"
#include "monster.hpp"
#include "scenario/monster.hpp"
#include "living.hpp"
class cCreature : public cMonster, public cTownperson, public iLiving {

View File

@@ -14,11 +14,11 @@
#include <sstream>
#include <stdexcept>
#include "scenario.hpp"
#include "universe.hpp"
#include "strdlog.hpp"
#include "scenario/scenario.hpp"
#include "universe/universe.hpp"
#include "dialogxml/dialogs/strdlog.hpp"
#include "oldstructs.hpp"
#include "fileio.hpp"
#include "fileio/fileio.hpp"
#include "mathutil.hpp"
cParty::cParty(ePartyPreset party_preset) {

View File

@@ -17,14 +17,14 @@
#include <boost/iterator/indirect_iterator.hpp>
#include "vehicle.hpp"
#include "scenario/vehicle.hpp"
#include "population.hpp"
#include "item.hpp"
#include "scenario/item.hpp"
#include "pc.hpp"
#include "outdoors.hpp"
#include "monster.hpp"
#include "scenario/outdoors.hpp"
#include "scenario/monster.hpp"
#include "living.hpp"
#include "quest.hpp"
#include "scenario/quest.hpp"
namespace legacy {
struct party_record_type;

View File

@@ -18,7 +18,7 @@
#include "universe.hpp"
#include "oldstructs.hpp"
#include "mathutil.hpp"
#include "fileio.hpp"
#include "fileio/fileio.hpp"
#include "sounds.hpp"
extern short skill_bonus[21];

View File

@@ -17,8 +17,8 @@
#include <cstdint>
#include <limits>
#include "item.hpp"
#include "pictypes.hpp"
#include "scenario/item.hpp"
#include "dialogxml/widgets/pictypes.hpp"
#include "living.hpp"
#include "skills_traits.hpp"
#include "race.hpp"

View File

@@ -9,7 +9,7 @@
#ifndef BOE_DATA_CREATLIST_H
#define BOE_DATA_CREATLIST_H
#include "monster.hpp"
#include "scenario/monster.hpp"
#include <iosfwd>
#include "creature.hpp"

View File

@@ -14,11 +14,11 @@
#include <sstream>
#include <stack>
#include "town.hpp"
#include "scenario/town.hpp"
#include "oldstructs.hpp"
#include "mathutil.hpp"
#include "fileio.hpp"
#include "gfxsheets.hpp"
#include "fileio/fileio.hpp"
#include "gfx/gfxsheets.hpp"
void cCurOut::import_legacy(legacy::out_info_type& old){
for(int i = 0; i < 96; i++)

View File

@@ -16,11 +16,11 @@
#include <boost/filesystem/path.hpp>
#include "party.hpp"
#include "population.hpp"
#include "item.hpp"
#include "town.hpp"
#include "talking.hpp"
#include "scenario.hpp"
#include "pictypes.hpp"
#include "scenario/item.hpp"
#include "scenario/town.hpp"
#include "scenario/talking.hpp"
#include "scenario/scenario.hpp"
#include "dialogxml/widgets/pictypes.hpp"
namespace legacy {
struct out_info_type;