From f369291606619ecf9fe8253fd349866f54fefb92 Mon Sep 17 00:00:00 2001 From: adelikat Date: Wed, 1 Apr 2020 11:49:20 -0500 Subject: [PATCH] this is the correct lua convention going forword, no snake case --- .../tools/Lua/Libraries/EmuLuaLibrary.Client.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Client.cs b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Client.cs index 3fb5e97f24..3141069955 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Client.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Client.cs @@ -363,7 +363,7 @@ namespace BizHawk.Client.EmuHawk } [LuaMethodExample("local newY = client.transform_point( 32, 100 ).y;")] - [LuaMethod("transform_point", "Transforms a point (x, y) in emulator space to a point in client space")] + [LuaMethod("transformPoint", "Transforms a point (x, y) in emulator space to a point in client space")] public LuaTable TransformPoint(int x, int y) { var transformed = ClientApi.TransformPoint(new Point(x, y)); var table = Lua.NewTable();