- moved a few things around to have them into better fitting places.

This commit is contained in:
Christoph Oelckers 2017-02-08 12:24:08 +01:00
commit 5a81a4ca16
20 changed files with 23 additions and 28 deletions

View file

@ -32,7 +32,7 @@
*/
#include "vmbuilder.h"
#include "codegeneration/codegen.h"
#include "codegen.h"
#include "info.h"
#include "m_argv.h"
#include "thingdef.h"

View file

@ -47,7 +47,7 @@
#include "decallib.h"
#include "i_system.h"
#include "thingdef.h"
#include "codegeneration/codegen.h"
#include "backend/codegen.h"
#include "r_data/r_translate.h"
// TYPES -------------------------------------------------------------------

View file

@ -49,7 +49,7 @@
#include "thingdef.h"
#include "p_lnspec.h"
#include "doomstat.h"
#include "codegeneration/codegen.h"
#include "backend/codegen.h"
FRandom pr_exrandom ("EX_Random");

View file

@ -49,7 +49,7 @@
#include "v_palette.h"
#include "doomerrors.h"
#include "i_system.h"
#include "codegeneration/codegen.h"
#include "backend/codegen.h"
#include "w_wad.h"
#include "v_video.h"
#include "version.h"

View file

@ -53,10 +53,10 @@
#include "s_sound.h"
#include "i_system.h"
#include "colormatcher.h"
#include "codegeneration/codegen.h"
#include "backend/codegen.h"
#include "version.h"
#include "templates.h"
#include "vmbuilder.h"
#include "backend/vmbuilder.h"
//==========================================================================
//***

View file

@ -60,9 +60,9 @@
#include "p_conversation.h"
#include "v_text.h"
#include "thingdef.h"
#include "codegeneration/codegen.h"
#include "backend/codegen.h"
#include "a_sharedglobal.h"
#include "vmbuilder.h"
#include "backend/vmbuilder.h"
#include "stats.h"
// EXTERNAL FUNCTION PROTOTYPES --------------------------------------------

View file

@ -66,7 +66,7 @@
#include "teaminfo.h"
#include "v_video.h"
#include "r_data/colormaps.h"
#include "vmbuilder.h"
#include "backend/vmbuilder.h"
#include "a_keys.h"
#include "g_levellocals.h"

View file

@ -48,7 +48,7 @@
#include "p_lnspec.h"
#include "i_system.h"
#include "gdtoa.h"
#include "vmbuilder.h"
#include "backend/vmbuilder.h"
#include "version.h"
static int GetIntConst(FxExpression *ex, FCompileContext &ctx)

View file

@ -2,7 +2,7 @@
#define ZCC_COMPILE_H
#include <memory>
#include "codegeneration/codegen.h"
#include "backend/codegen.h"
struct Baggage;
struct FPropertyInfo;