From 4f84621244e35bc8e2f16171ab88d127836a22b1 Mon Sep 17 00:00:00 2001 From: freem Date: Thu, 4 Sep 2014 20:10:02 -0500 Subject: [PATCH] add missing return statement to max_dimension_use_zoom lua binding --- src/BitmapText.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/BitmapText.cpp b/src/BitmapText.cpp index 30945c0587..465635981d 100644 --- a/src/BitmapText.cpp +++ b/src/BitmapText.cpp @@ -872,6 +872,7 @@ public: static int max_dimension_use_zoom(T* p, lua_State* L) { p->SetMaxDimUseZoom(lua_toboolean(L, 1)); + return 0; } static int vertspacing( T* p, lua_State *L ) { p->SetVertSpacing( IArg(1) ); return 0; } static int settext( T* p, lua_State *L )