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();