From d97d94ecbc6528a78a0c2165c96577881b96ddd9 Mon Sep 17 00:00:00 2001 From: ConHuevosGuey Date: Sun, 28 Jun 2015 13:25:28 -0500 Subject: [PATCH] Made size nullable...now requires a size input. --- .../tools/Lua/Libraries/EmuLuaLibrary.Gui.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs index 5849b5fa81..f2619226b8 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs @@ -383,10 +383,10 @@ namespace BizHawk.Client.EmuHawk "Draws an axis of the specified size at the coordinate pair.)" )] - public void DrawAxis(int x, int y, int? size = null, Color? color = null) + public void DrawAxis(int x, int y, int size, Color? color = null) { - DrawLine(x + (int) size, y, x - (int) size, y, color); - DrawLine(x, y + (int)size, x, y - (int)size, color); + DrawLine(x + size, y, x - size, y, color); + DrawLine(x, y + size, x, y - size, color); }