Skip to content

Commit

Permalink
Plugins: use already defined macros
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY committed May 20, 2018
1 parent b0ceaef commit e6f98b0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/plugins/Max/Export/Stdafx.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include <algorithm>

#include "Common/Common.hpp"
#include "Common/FSMacros.hpp"

#pragma warning(push)
#pragma warning(disable : 4995)
Expand Down Expand Up @@ -80,6 +81,5 @@ using std::string;
#endif

#define GAMEMTL_NONE u32(-1)
#define _game_data_ "$game_data$"

#pragma warning(pop)
2 changes: 1 addition & 1 deletion src/plugins/Max/Material/Stdafx.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include <algorithm>

#include "Common/Common.hpp"
#include "Common/FSMacros.hpp"

#pragma warning(push)
#pragma warning(disable : 4995)
Expand Down Expand Up @@ -79,6 +80,5 @@ using std::string;
#endif

#define GAMEMTL_NONE u32(-1)
#define _game_data_ "$game_data$"

#pragma warning(pop)
2 changes: 1 addition & 1 deletion src/plugins/Maya/Export/Stdafx.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include <algorithm>

#include "Common/Common.hpp"
#include "Common/FSMacros.hpp"

#define ENGINE_API
#include "xrCore/xrCore.h"
Expand Down Expand Up @@ -129,6 +130,5 @@ using AStringVec = xr_vector<xr_string>;
#endif

#define GAMEMTL_NONE u32(-1)
#define _game_data_ "$game_data$"

#pragma comment(lib, "d3dx9.lib")
2 changes: 1 addition & 1 deletion src/plugins/Maya/Material/Stdafx.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include "Common/Common.hpp"
#include "Common/FSMacros.hpp"

#include "xrCore/xrCore.h"

Expand Down Expand Up @@ -106,4 +107,3 @@ using AStringVec = xr_vector<std::string>;
#endif

#define GAMEMTL_NONE u32(-1)
#define _game_data_ "$game_data$"
2 changes: 1 addition & 1 deletion src/plugins/lw/Export/stdafx.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include "Common/Common.hpp"
#include "Common/FSMacros.hpp"

#include "xrCore/xrCore.h"

Expand Down Expand Up @@ -63,4 +64,3 @@ using AStringVec = xr_vector<std::string>;
#endif

#define GAMEMTL_NONE u32(-1)
#define _game_data_ "$game_data$"
2 changes: 1 addition & 1 deletion src/plugins/lw/Shader/stdafx.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include "Common/Common.hpp"
#include "Common/FSMacros.hpp"

#include "xrCore/xrCore.h"
#include "xrCore/_std_extensions.h"
Expand Down Expand Up @@ -57,4 +58,3 @@ using AStringVec = xr_vector<std::string>;
#endif

#define GAMEMTL_NONE u32(-1)
#define _game_data_ "$game_data$"

0 comments on commit e6f98b0

Please sign in to comment.