diff options
| author | Filippos Karapetis | 2011-01-28 17:03:15 +0000 | 
|---|---|---|
| committer | Filippos Karapetis | 2011-01-28 17:03:15 +0000 | 
| commit | eb59444d1e4f2c986a6fe05b9d6be691ae2e28bd (patch) | |
| tree | e49a9b1502a5c85d88b95d8a1332c15eba330f06 | |
| parent | 7ed5a928231f87e01ef717316c2f949c62fe9d2d (diff) | |
| download | scummvm-rg350-eb59444d1e4f2c986a6fe05b9d6be691ae2e28bd.tar.gz scummvm-rg350-eb59444d1e4f2c986a6fe05b9d6be691ae2e28bd.tar.bz2 scummvm-rg350-eb59444d1e4f2c986a6fe05b9d6be691ae2e28bd.zip | |
SWORD25: Removed some now unused variables
svn-id: r55596
| -rw-r--r-- | engines/sword25/gfx/graphicengine_script.cpp | 3 | 
1 files changed, 0 insertions, 3 deletions
| diff --git a/engines/sword25/gfx/graphicengine_script.cpp b/engines/sword25/gfx/graphicengine_script.cpp index f865400677..e9a2617d71 100644 --- a/engines/sword25/gfx/graphicengine_script.cpp +++ b/engines/sword25/gfx/graphicengine_script.cpp @@ -344,8 +344,6 @@ static int isWindowed(lua_State *L) {  }  static int getFPSCount(lua_State *L) { -	GraphicEngine *pGE = getGE(); -  	// Used in a debug function  	lua_pushnumber(L, 0); @@ -395,7 +393,6 @@ static int saveThumbnailScreenshot(lua_State *L) {  }  static int getRepaintedPixels(lua_State *L) { -	GraphicEngine *pGE = getGE();  	// Used in a debug function.  	lua_pushnumber(L, 0);  	return 1; | 
