diff --git a/src/BizHawk.Client.Common/Global.cs b/src/BizHawk.Client.Common/Global.cs index d3dfe0c59e..2b5c518abd 100644 --- a/src/BizHawk.Client.Common/Global.cs +++ b/src/BizHawk.Client.Common/Global.cs @@ -1,5 +1,4 @@ -using System.Collections.Generic; -using BizHawk.Emulation.Common; +using BizHawk.Emulation.Common; // ReSharper disable StyleCop.SA1401 namespace BizHawk.Client.Common @@ -11,6 +10,5 @@ namespace BizHawk.Client.Common public static FirmwareManager FirmwareManager { get; set; } public static IMovieSession MovieSession { get; set; } public static InputManager InputManager { get; } = new InputManager(); - public static Dictionary UserBag { get; set; } = new Dictionary(); } } diff --git a/src/BizHawk.Client.EmuHawk/Api/UserDataApi.cs b/src/BizHawk.Client.EmuHawk/Api/UserDataApi.cs index dcb813744d..3a1ed51cc7 100644 --- a/src/BizHawk.Client.EmuHawk/Api/UserDataApi.cs +++ b/src/BizHawk.Client.EmuHawk/Api/UserDataApi.cs @@ -13,15 +13,15 @@ namespace BizHawk.Client.EmuHawk var t = value.GetType(); if (!t.IsPrimitive && t != typeof(string)) throw new InvalidOperationException("Invalid type for userdata"); } - Global.UserBag[name] = value; + GlobalWin.UserBag[name] = value; } - public object Get(string key) => Global.UserBag.TryGetValue(key, out var value) ? value : null; + public object Get(string key) => GlobalWin.UserBag.TryGetValue(key, out var value) ? value : null; - public void Clear() => Global.UserBag.Clear(); + public void Clear() => GlobalWin.UserBag.Clear(); - public bool Remove(string key) => Global.UserBag.Remove(key); + public bool Remove(string key) => GlobalWin.UserBag.Remove(key); - public bool ContainsKey(string key) => Global.UserBag.ContainsKey(key); + public bool ContainsKey(string key) => GlobalWin.UserBag.ContainsKey(key); } } diff --git a/src/BizHawk.Client.EmuHawk/GlobalWin.cs b/src/BizHawk.Client.EmuHawk/GlobalWin.cs index ef37fbf67a..f6f05e0c32 100644 --- a/src/BizHawk.Client.EmuHawk/GlobalWin.cs +++ b/src/BizHawk.Client.EmuHawk/GlobalWin.cs @@ -1,6 +1,7 @@ using BizHawk.Bizware.BizwareGL; using BizHawk.Client.Common; using BizHawk.Emulation.Common; +using System.Collections.Generic; // ReSharper disable StyleCop.SA1401 namespace BizHawk.Client.EmuHawk @@ -38,5 +39,7 @@ namespace BizHawk.Client.EmuHawk /// Used to disable secondary throttling (e.g. vsync, audio) for unthrottled modes or when the primary (clock) throttle is taking over (e.g. during fast forward/rewind). /// public static bool DisableSecondaryThrottling { get; set; } + + public static Dictionary UserBag { get; set; } = new Dictionary(); } } diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index 01a4cff481..81367722c0 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -3981,7 +3981,7 @@ namespace BizHawk.Client.EmuHawk return; } - if (new SavestateFile(Emulator, MovieSession, Global.UserBag).Load(path)) + if (new SavestateFile(Emulator, MovieSession, GlobalWin.UserBag).Load(path)) { GlobalWin.OSD.ClearGuiText(); ClientApi.OnStateLoaded(this, userFriendlyStateName); @@ -4058,7 +4058,7 @@ namespace BizHawk.Client.EmuHawk try { - new SavestateFile(Emulator, MovieSession, Global.UserBag).Create(path, Config.Savestates); + new SavestateFile(Emulator, MovieSession, GlobalWin.UserBag).Create(path, Config.Savestates); ClientApi.OnStateSaved(this, userFriendlyStateName);