aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-02-08 12:59:26 -0500
committerMichael <[email protected]>2017-02-08 12:59:26 -0500
commita4b49ab68b4383e84ee200f47ea21ed1b4b22ffa (patch)
treec913bf2257f4dc3456e0e77aef6833175ff3baff /ShiftOS_TheReturn
parentf66cf31e5d590cfcd82c849f18986003b47f7976 (diff)
downloadshiftos_thereturn-a4b49ab68b4383e84ee200f47ea21ed1b4b22ffa.tar.gz
shiftos_thereturn-a4b49ab68b4383e84ee200f47ea21ed1b4b22ffa.tar.bz2
shiftos_thereturn-a4b49ab68b4383e84ee200f47ea21ed1b4b22ffa.zip
Mute the background music during OOBE
Diffstat (limited to 'ShiftOS_TheReturn')
-rw-r--r--ShiftOS_TheReturn/Shiftorium.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/ShiftOS_TheReturn/Shiftorium.cs b/ShiftOS_TheReturn/Shiftorium.cs
index 4e31427..8350dc3 100644
--- a/ShiftOS_TheReturn/Shiftorium.cs
+++ b/ShiftOS_TheReturn/Shiftorium.cs
@@ -30,6 +30,7 @@ using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using static ShiftOS.Engine.SaveSystem;
+using System.Diagnostics;
namespace ShiftOS.Engine
{
@@ -242,6 +243,9 @@ namespace ShiftOS.Engine
public ShiftoriumUpgradeLookupException(string id) : base("A shiftorium upgrade of ID \"" + id + "\" was not found in the system.")
{
ID = id;
+
+ Debug.WriteLine("UpgradeNotFound: " + id);
+
}
public string ID { get; private set; }