From 178939f76cab02b35bfaf6953c91f03222757c0c Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Sun, 17 Sep 2023 01:03:42 -0700 Subject: [PATCH] woops --- .../lua/LuaHelperLibs/NDSLuaLibrary.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/BizHawk.Client.Common/lua/LuaHelperLibs/NDSLuaLibrary.cs b/src/BizHawk.Client.Common/lua/LuaHelperLibs/NDSLuaLibrary.cs index e15bf0f162..9dbe89c697 100644 --- a/src/BizHawk.Client.Common/lua/LuaHelperLibs/NDSLuaLibrary.cs +++ b/src/BizHawk.Client.Common/lua/LuaHelperLibs/NDSLuaLibrary.cs @@ -41,10 +41,10 @@ namespace BizHawk.Client.Common public int GetScreenGap() => Settings.ScreenGap; - [LuaMethodExample("if ( nds.getaudiobitrate( ) ) then\r\n\tconsole.log( \"Returns the audio bitrate setting\" );\r\nend;")] - [LuaMethod("getaudiobitrate", "Returns the audio bitrate setting")] - public string GetAudioBitrate() - => Settings.AudioBitrate.ToString(); + [LuaMethodExample("if ( nds.getaudiobitdepth( ) ) then\r\n\tconsole.log( \"Returns the audio bitdepth setting\" );\r\nend;")] + [LuaMethod("getaudiobitdepth", "Returns the audio bitdepth setting")] + public string GetAudioBitDepth() + => Settings.AudioBitDepth.ToString(); [LuaMethodExample("nds.setscreenlayout( \"Vertical\" );")] [LuaMethod("setscreenlayout", "Sets which screen layout is active")] @@ -82,12 +82,12 @@ namespace BizHawk.Client.Common Settings = s; } - [LuaMethodExample("nds.setaudiobitrate( \"Auto\" );")] - [LuaMethod("setaudiobitrate", "Sets the audio bitrate setting")] - public void SetAudioBitrate(string value) + [LuaMethodExample("nds.setaudiobitdepth( \"Auto\" );")] + [LuaMethod("setaudiobitdepth", "Sets the audio bitdepth setting")] + public void SetAudioBitDepth(string value) { var s = Settings; - s.AudioBitrate = (NDS.NDSSettings.AudioBitrateType)Enum.Parse(typeof(NDS.NDSSettings.AudioBitrateType), value, true); + s.AudioBitDepth = (NDS.NDSSettings.AudioBitDepthType)Enum.Parse(typeof(NDS.NDSSettings.AudioBitDepthType), value, true); Settings = s; } }