From 5e73c7c53683de4737238e0d9d7adc5ee402a499 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 2 Dec 2019 20:48:38 -0600 Subject: [PATCH] lua - update memory documentation to mention it defaults to system bus, fixes #1675 --- BizHawk.Client.Common/lua/EmuLuaLibrary.Memory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Memory.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Memory.cs index 2de8448082e..49ef4d3b96b 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Memory.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Memory.cs @@ -9,7 +9,7 @@ // ReSharper disable UnusedMember.Global namespace BizHawk.Client.Common { - [Description("These functions behavior identically to the mainmemory functions but the user can set the memory domain to read and write from. The default domain is main memory. Use getcurrentmemorydomain(), and usememorydomain() to control which domain is used. Each core has its own set of valid memory domains. Use getmemorydomainlist() to get a list of memory domains for the current core loaded.")] + [Description("These functions behavior identically to the mainmemory functions but the user can set the memory domain to read and write from. The default domain is the system bus. Use getcurrentmemorydomain(), and usememorydomain() to control which domain is used. Each core has its own set of valid memory domains. Use getmemorydomainlist() to get a list of memory domains for the current core loaded.")] public sealed class MemoryLuaLibrary : LuaMemoryBase { private MemoryDomain _currentMemoryDomain;