Added toggle between stereo and mono sound for radar

This commit is contained in:
shoaib11120
2022-01-21 14:58:15 +05:30
parent 8e09b9f1db
commit 94ca19f3bb
7 changed files with 24 additions and 5 deletions

View File

@@ -100,9 +100,9 @@ namespace stardew_access
helper.ConsoleCommands.Add("rstereo", "Toggle stereo sound in radar feature", (string commmand, string[] args) =>
{
MainClass.monoSound = !MainClass.monoSound;
MainClass.radarStereoSound = !MainClass.radarStereoSound;
MainClass.monitor.Log("Stereo sound is " + (MainClass.radarDebug ? "on" : "off"), LogLevel.Info);
MainClass.monitor.Log("Stereo sound is " + (MainClass.radarStereoSound ? "on" : "off"), LogLevel.Info);
});
helper.ConsoleCommands.Add("refsr", "Refresh screen reader", (string commmand, string[] args) =>