diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-10-20 23:46:39 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-10-20 23:46:39 +0000 |
| commit | d15860e44f3cbe0c92add6acd24ace564442645d (patch) | |
| tree | e0763557279c211b032b18d3b2773e4a073752cd /src/game/editor | |
| parent | ad9c1b0a22fb451f909d8f12510c560fa8889be2 (diff) | |
| download | zcatch-d15860e44f3cbe0c92add6acd24ace564442645d.tar.gz zcatch-d15860e44f3cbe0c92add6acd24ace564442645d.zip | |
renamed gc_render* to render*
Diffstat (limited to 'src/game/editor')
| -rw-r--r-- | src/game/editor/ed_editor.cpp | 2 | ||||
| -rw-r--r-- | src/game/editor/ed_editor.hpp | 2 | ||||
| -rw-r--r-- | src/game/editor/ed_layer_quads.cpp | 2 | ||||
| -rw-r--r-- | src/game/editor/ed_layer_tiles.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/game/editor/ed_editor.cpp b/src/game/editor/ed_editor.cpp index b62233dc..a7110a3b 100644 --- a/src/game/editor/ed_editor.cpp +++ b/src/game/editor/ed_editor.cpp @@ -14,7 +14,7 @@ extern "C" { #include <game/client/ui.hpp> #include <game/gamecore.hpp> -#include <game/client/gc_render.hpp> +#include <game/client/render.hpp> #include "ed_editor.hpp" diff --git a/src/game/editor/ed_editor.hpp b/src/game/editor/ed_editor.hpp index f879e3c0..44eb4664 100644 --- a/src/game/editor/ed_editor.hpp +++ b/src/game/editor/ed_editor.hpp @@ -7,7 +7,7 @@ #include <math.h> #include "array.hpp" #include "../mapitems.hpp" -#include "../client/gc_render.hpp" +#include "../client/render.hpp" extern "C" { #include <engine/e_client_interface.h> diff --git a/src/game/editor/ed_layer_quads.cpp b/src/game/editor/ed_layer_quads.cpp index a6e49248..bfdacbfd 100644 --- a/src/game/editor/ed_layer_quads.cpp +++ b/src/game/editor/ed_layer_quads.cpp @@ -2,7 +2,7 @@ #include "ed_editor.hpp" #include <game/generated/gc_data.hpp> -#include <game/client/gc_render.hpp> +#include <game/client/render.hpp> LAYER_QUADS::LAYER_QUADS() { diff --git a/src/game/editor/ed_layer_tiles.cpp b/src/game/editor/ed_layer_tiles.cpp index 8f4c8660..80ccaa3a 100644 --- a/src/game/editor/ed_layer_tiles.cpp +++ b/src/game/editor/ed_layer_tiles.cpp @@ -1,7 +1,7 @@ #include <base/math.hpp> #include <game/generated/gc_data.hpp> -#include <game/client/gc_render.hpp> +#include <game/client/render.hpp> #include "ed_editor.hpp" LAYER_TILES::LAYER_TILES(int w, int h) |