From cac369ee44c88a5f572bb769dbbb92ff6fa6d73f Mon Sep 17 00:00:00 2001 From: Bart van Strien Date: Fri, 11 May 2018 17:35:24 +0200 Subject: [PATCH] Export luax_resume for windows --- src/common/runtime.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/runtime.h b/src/common/runtime.h index 562ac3cdf..90cacbb99 100644 --- a/src/common/runtime.h +++ b/src/common/runtime.h @@ -678,8 +678,9 @@ int luax_catchexcept(lua_State *L, const T& func, const F& finallyfunc) /** * Compatibility shim for lua_resume + * Exported because it's used in the launcher **/ -int luax_resume(lua_State *L, int nargs); +LOVE_EXPORT int luax_resume(lua_State *L, int nargs); } // love