From 9eace41f0d927c344c7e59415957052563440f0e Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 14 Nov 2017 23:53:16 +0100 Subject: [PATCH] Fix typo. --- TracyLua.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TracyLua.hpp b/TracyLua.hpp index 90e512d8..b3c18003 100644 --- a/TracyLua.hpp +++ b/TracyLua.hpp @@ -248,7 +248,7 @@ static inline void LuaRegister( lua_State* L ) lua_newtable( L ); lua_pushcfunction( L, detail::LuaZoneBegin ); lua_setfield( L, -2, "ZoneBegin" ); - lua_pushcfunction( L, detail::LuaZoneBegin ); + lua_pushcfunction( L, detail::LuaZoneBeginN ); lua_setfield( L, -2, "ZoneBeginN" ); lua_pushcfunction( L, detail::LuaZoneEnd ); lua_setfield( L, -2, "ZoneEnd" );