summaryrefslogtreecommitdiff
path: root/src/render/imagegraphics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/imagegraphics.cpp')
-rw-r--r--src/render/imagegraphics.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/render/imagegraphics.cpp b/src/render/imagegraphics.cpp
index 8f9cd8943..b439fb0e4 100644
--- a/src/render/imagegraphics.cpp
+++ b/src/render/imagegraphics.cpp
@@ -42,20 +42,17 @@ ImegeGraphics::~ImegeGraphics()
{
}
-bool ImegeGraphics::drawImage(const Image *const image A_UNUSED,
+void ImegeGraphics::drawImage(const Image *const image A_UNUSED,
int dstX A_UNUSED, int dstY A_UNUSED)
{
// for now not implimented
- return false;
}
-bool ImegeGraphics::copyImage(const Image *const image,
+void ImegeGraphics::copyImage(const Image *const image,
int dstX A_UNUSED, int dstY A_UNUSED)
{
if (!mTarget || !image)
- return false;
-
- return false;
+ return;
}
void ImegeGraphics::drawImageCached(const Image *const image,