about summary refs log tree commit diff
path: root/src/game/editor/ed_editor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/editor/ed_editor.hpp')
-rw-r--r--src/game/editor/ed_editor.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/editor/ed_editor.hpp b/src/game/editor/ed_editor.hpp
index 23dbd382..62f8871a 100644
--- a/src/game/editor/ed_editor.hpp
+++ b/src/game/editor/ed_editor.hpp
@@ -217,10 +217,10 @@ public:
 	}
 };
 
-class IMAGE : public IMAGE_INFO
+class EDITOR_IMAGE : public IMAGE_INFO
 {
 public:
-	IMAGE()
+	EDITOR_IMAGE()
 	{
 		tex_id = -1;
 		name[0] = 0;
@@ -231,7 +231,7 @@ public:
 		format = 0;
 	}
 	
-	~IMAGE()
+	~EDITOR_IMAGE()
 	{
 		gfx_unload_texture(tex_id);
 	}
@@ -255,7 +255,7 @@ public:
 	}
 
 	array<LAYERGROUP*> groups;
-	array<IMAGE*> images;
+	array<EDITOR_IMAGE*> images;
 	array<ENVELOPE*> envelopes;
 	
 	class LAYER_GAME *game_layer;