# HG changeset patch
# User Wuzzy <Wuzzy2@mail.ru>
# Date 1555731597 -7200
# Node ID 183677a07c8db11ced9d4e05800d44e1b5736ba7
# Parent  fba15e2f5e5b8adb38940d98b04e5b7232dff8ab
Separate Yoohoo.ogg into "Yoohoo" voice and kiss sound

Sound has been separated with mp3splt, so no quality loss

diff -r fba15e2f5e5b -r 183677a07c8d hedgewars/uGearsHandlersMess.pas
--- a/hedgewars/uGearsHandlersMess.pas	Sat Apr 20 05:14:24 2019 +0200
+++ b/hedgewars/uGearsHandlersMess.pas	Sat Apr 20 05:39:57 2019 +0200
@@ -3916,6 +3916,8 @@
         inc(Gear^.Pos);
         if Gear^.Pos = 5 then
             PlaySound(sndYoohoo);
+        if Gear^.Pos = 14 then
+            PlaySound(sndKiss);
         end;
 
 
diff -r fba15e2f5e5b -r 183677a07c8d hedgewars/uSound.pas
--- a/hedgewars/uSound.pas	Sat Apr 20 05:14:24 2019 +0200
+++ b/hedgewars/uSound.pas	Sat Apr 20 05:39:57 2019 +0200
@@ -329,7 +329,8 @@
             (FileName:             'Cutitout.ogg'; Path: ptVoices; AltPath: ptNone),// sndCutItOut
             (FileName:         'Leavemealone.ogg'; Path: ptVoices; AltPath: ptNone),// sndLeaveMeAlone
             (FileName:                 'Ouch.ogg'; Path: ptVoices; AltPath: ptNone),// sndOuch
-            (FileName:                  'Hmm.ogg'; Path: ptVoices; AltPath: ptNone) // sndHmm
+            (FileName:                  'Hmm.ogg'; Path: ptVoices; AltPath: ptNone),// sndHmm
+            (FileName:                 'Kiss.ogg'; Path: ptSounds; AltPath: ptNone) // sndKiss
             );
 
 
diff -r fba15e2f5e5b -r 183677a07c8d hedgewars/uTypes.pas
--- a/hedgewars/uTypes.pas	Sat Apr 20 05:14:24 2019 +0200
+++ b/hedgewars/uTypes.pas	Sat Apr 20 05:39:57 2019 +0200
@@ -156,7 +156,7 @@
             sndLandGun, sndCaseImpact, sndExtraDamage, sndFirePunchHit, sndGrenade, sndThisOneIsMine,
             sndWhatThe, sndSoLong, sndOhDear, sndGonnaGetYou, sndDrat, sndBugger, sndAmazing,
             sndBrilliant, sndExcellent, sndFire, sndWatchThis, sndRunAway, sndRevenge, sndCutItOut,
-            sndLeaveMeAlone, sndOuch, sndHmm);
+            sndLeaveMeAlone, sndOuch, sndHmm, sndKiss);
 
     // Available ammo types to be used by hedgehogs
     TAmmoType  = (amNothing, amGrenade, amClusterBomb, amBazooka, amBee, amShotgun, amPickHammer, // 6
diff -r fba15e2f5e5b -r 183677a07c8d share/hedgewars/Data/Sounds/Kiss.ogg
Binary file share/hedgewars/Data/Sounds/Kiss.ogg has changed
diff -r fba15e2f5e5b -r 183677a07c8d share/hedgewars/Data/Sounds/Yoohoo.ogg
Binary file share/hedgewars/Data/Sounds/Yoohoo.ogg has changed