fix some lua autodoc

This commit is contained in:
zeromus 2015-10-16 18:27:43 -05:00
parent 9f2879acb6
commit 9b222653f5
2 changed files with 3 additions and 3 deletions

View File

@ -308,7 +308,7 @@ namespace BizHawk.Client.EmuHawk
[LuaMethodAttributes(
"screenheight",
"Gets the current width in pixels of the emulator's drawing area"
"Gets the current height in pixels of the emulator's drawing area"
)]
public static int ScreenHeight()
{
@ -360,7 +360,7 @@ namespace BizHawk.Client.EmuHawk
[LuaMethodAttributes(
"screenwidth",
"Gets the current height in pixels of the emulator's drawing area"
"Gets the current width in pixels of the emulator's drawing area"
)]
public static int ScreenWidth()
{

View File

@ -442,7 +442,7 @@ namespace BizHawk.Client.EmuHawk
[LuaMethodAttributes(
"drawPolygon",
"Draws a polygon using the table of coordinates specified in points. Line is the color of the polygon. Background is the optional fill color"
"Draws a polygon using the table of coordinates specified in points. This should be a table of tables(each of size 2). Line is the color of the polygon. Background is the optional fill color"
)]
public void DrawPolygon(LuaTable points, Color? line = null, Color? background = null)
{