From 57fa633a9ef2084b4dce41eef08dc9cce1159255 Mon Sep 17 00:00:00 2001 From: pjgat09 Date: Sun, 5 Apr 2015 04:11:00 +0000 Subject: [PATCH] Lua Forms: Fixed a bug with SetProperty --- .../tools/Lua/Libraries/EmuLuaLibrary.Forms.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs index 40b4c2c315..0e3f72f859 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs @@ -481,7 +481,7 @@ namespace BizHawk.Client.EmuHawk control .GetType() .GetProperty(property) - .SetValue(control, Convert.ChangeType(value, form.GetType().GetProperty(property).PropertyType), null); + .SetValue(control, Convert.ChangeType(value, control.GetType().GetProperty(property).PropertyType), null); } } }