From 0c7fa957115bced1b8c45929f2ee7123b2f94e7b Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Mon, 16 Mar 2020 14:57:24 -0400 Subject: [PATCH] new sfx file names --- Shared/SoundEffects.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Shared/SoundEffects.cs b/Shared/SoundEffects.cs index 067a69d..ab2506b 100644 --- a/Shared/SoundEffects.cs +++ b/Shared/SoundEffects.cs @@ -9,10 +9,10 @@ namespace SemiColinGames { public static void Load(ContentManager content) { IntroMusic = content.Load("music/playonloop/smash_bros_short"); - SwordSwings[0] = content.Load("sfx/zapsplat/sword_whoosh_1"); - SwordSwings[1] = content.Load("sfx/zapsplat/sword_whoosh_2"); - SwordSwings[2] = content.Load("sfx/zapsplat/sword_whoosh_3"); - SwordSwings[3] = content.Load("sfx/zapsplat/sword_whoosh_4"); + SwordSwings[0] = content.Load("sfx/zs_whoosh_30568"); + SwordSwings[1] = content.Load("sfx/zs_whoosh_30569"); + SwordSwings[2] = content.Load("sfx/zs_whoosh_30570"); + SwordSwings[3] = content.Load("sfx/zs_whoosh_30571"); } } }