diff options
author | Eugene Sandulenko | 2010-09-25 19:49:02 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2010-10-13 00:05:33 +0000 |
commit | 343981923291581b3c4890ea99961a1bf2e7c56e (patch) | |
tree | 1af57a8be7bffa4e765d10cb9f98bbd879e9af75 | |
parent | 56e05f93a38576b32d77f81cb7b43b5970f87d92 (diff) | |
download | scummvm-rg350-343981923291581b3c4890ea99961a1bf2e7c56e.tar.gz scummvm-rg350-343981923291581b3c4890ea99961a1bf2e7c56e.tar.bz2 scummvm-rg350-343981923291581b3c4890ea99961a1bf2e7c56e.zip |
SWORD25: Add path to art.h include
svn-id: r53386
-rw-r--r-- | engines/sword25/gfx/image/art.cpp | 2 | ||||
-rw-r--r-- | engines/sword25/gfx/image/vectorimage.cpp | 3 | ||||
-rw-r--r-- | engines/sword25/module.mk | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/engines/sword25/gfx/image/art.cpp b/engines/sword25/gfx/image/art.cpp index 400b7893ed..e9aacbcf24 100644 --- a/engines/sword25/gfx/image/art.cpp +++ b/engines/sword25/gfx/image/art.cpp @@ -34,7 +34,7 @@ /* Various utility functions RLL finds useful. */ -#include "art.h" +#include "sword25/gfx/image/art.h" namespace Sword25 { diff --git a/engines/sword25/gfx/image/vectorimage.cpp b/engines/sword25/gfx/image/vectorimage.cpp index 9c2060f5e8..c2a80cb5f2 100644 --- a/engines/sword25/gfx/image/vectorimage.cpp +++ b/engines/sword25/gfx/image/vectorimage.cpp @@ -37,13 +37,12 @@ // ----------------------------------------------------------------------------- #include "sword25/kernel/bs_stdint.h" +#include "sword25/gfx/image/art.h" #include "sword25/gfx/image/vectorimage.h" #include "sword25/gfx/image/renderedimage.h" #include "graphics/colormasks.h" -#include "art.h" - namespace Sword25 { #define BS_LOG_PREFIX "VECTORIMAGE" diff --git a/engines/sword25/module.mk b/engines/sword25/module.mk index c936565a1c..09d697719f 100644 --- a/engines/sword25/module.mk +++ b/engines/sword25/module.mk @@ -27,6 +27,7 @@ MODULE_OBJS := \ gfx/staticbitmap.o \ gfx/text.o \ gfx/timedrenderobject.o \ + gfx/image/art.o \ gfx/image/b25sloader.o \ gfx/image/imageloader.o \ gfx/image/pngloader.o \ @@ -34,7 +35,6 @@ MODULE_OBJS := \ gfx/image/swimage.o \ gfx/image/vectorimage.o \ gfx/image/vectorimagerenderer.o \ - gfx/image/art.o \ input/inputengine.o \ input/inputengine_script.o \ kernel/callbackregistry.o \ |