aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/graphicengine_script.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword25/gfx/graphicengine_script.cpp')
-rw-r--r--engines/sword25/gfx/graphicengine_script.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/sword25/gfx/graphicengine_script.cpp b/engines/sword25/gfx/graphicengine_script.cpp
index 835e1e20b8..b2a6309e48 100644
--- a/engines/sword25/gfx/graphicengine_script.cpp
+++ b/engines/sword25/gfx/graphicengine_script.cpp
@@ -383,8 +383,10 @@ static int getSecondaryFrameDuration(lua_State *L) {
}
static int saveScreenshot(lua_State *L) {
- GraphicEngine *pGE = getGE();
- lua_pushbooleancpp(L, pGE->saveScreenshot(luaL_checkstring(L, 1)));
+ // This is used by system/debug.lua only. We do not implement this; support
+ // for taking screenshots is a backend feature.
+ lua_pushbooleancpp(L, false);
+
return 1;
}