1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00

fixed relative include paths

This commit is contained in:
AlexVinS 2017-06-29 00:09:35 +03:00
parent bd27636cd9
commit ab4c848169
2 changed files with 6 additions and 6 deletions

View File

@ -8,11 +8,11 @@
* *
*/ */
#pragma once #pragma once
#include "SiegeInfo.h" #include "../SiegeInfo.h"
#include "SideInBattle.h" #include "../SideInBattle.h"
#include "HeroBonus.h" #include "../HeroBonus.h"
#include "battle/CBattleInfoCallback.h" #include "CBattleInfoCallback.h"
#include "int3.h" #include "../int3.h"
class CStack; class CStack;
class CStackInstance; class CStackInstance;

View File

@ -8,7 +8,7 @@
* *
*/ */
#pragma once #pragma once
#include "GameConstants.h" #include "../GameConstants.h"
#define RETURN_IF_NOT_BATTLE(X) if(!duringBattle()) {logGlobal->errorStream() << __FUNCTION__ << " called when no battle!"; return X; } #define RETURN_IF_NOT_BATTLE(X) if(!duringBattle()) {logGlobal->errorStream() << __FUNCTION__ << " called when no battle!"; return X; }