diff --git a/Shared/SoundEffects.cs b/Shared/SoundEffects.cs index 0fda2ba..c3917cc 100644 --- a/Shared/SoundEffects.cs +++ b/Shared/SoundEffects.cs @@ -8,7 +8,7 @@ namespace SemiColinGames { public static SoundEffect[] SwordSwings = new SoundEffect[14]; // Returns true if all SoundEffects were successfully loaded. - public static bool Load(ContentManager content) { + public static void Load(ContentManager content) { try { IntroMusic = content.Load("music/playonloop/smash_bros_short"); SwordSwings[0] = content.Load("sfx/zs_whoosh_30568"); @@ -25,9 +25,8 @@ namespace SemiColinGames { SwordSwings[11] = content.Load("sfx/zs_whoosh_30579"); SwordSwings[12] = content.Load("sfx/zs_whoosh_30580"); SwordSwings[13] = content.Load("sfx/zs_whoosh_30581"); - return true; } catch (NoAudioHardwareException) { - return false; + Debug.WriteLine("SoundEffects.Load(): NoAudioHardwareException"); } } }