diff options
author | Willem Jan Palenstijn | 2009-07-03 11:54:52 +0000 |
---|---|---|
committer | Willem Jan Palenstijn | 2009-07-03 11:54:52 +0000 |
commit | 8f44661611068df6dd40ed7f277bf854c4f97547 (patch) | |
tree | 2097c3aafb387c278b6889ef58cc81abe2fb5ca9 | |
parent | c37f1d9d5e5ee2e2745c75f99189fb197c605c63 (diff) | |
download | scummvm-rg350-8f44661611068df6dd40ed7f277bf854c4f97547.tar.gz scummvm-rg350-8f44661611068df6dd40ed7f277bf854c4f97547.tar.bz2 scummvm-rg350-8f44661611068df6dd40ed7f277bf854c4f97547.zip |
Add conversion.o to module.mk. Add missing endline.
svn-id: r42058
-rw-r--r-- | graphics/conversion.h | 2 | ||||
-rw-r--r-- | graphics/module.mk | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/graphics/conversion.h b/graphics/conversion.h index 12015c498e..b04c9cb9d9 100644 --- a/graphics/conversion.h +++ b/graphics/conversion.h @@ -53,4 +53,4 @@ namespace Graphics { bool crossBlit(byte *dst, const byte *src, int dstpitch, int srcpitch, int w, int h, Graphics::PixelFormat dstFmt, Graphics::PixelFormat srcFmt); } // end of namespace Graphics -#endif //GRAPHICS_CONVERSION_H
\ No newline at end of file +#endif //GRAPHICS_CONVERSION_H diff --git a/graphics/module.mk b/graphics/module.mk index 37a7661f2e..8d7f2031c0 100644 --- a/graphics/module.mk +++ b/graphics/module.mk @@ -1,6 +1,7 @@ MODULE := graphics MODULE_OBJS := \ + conversion.o \ cursorman.o \ dither.o \ font.o \ |