made the cheat code make a generic menu sound when activated

This commit is contained in:
westonCoder 2023-11-17 10:22:52 -06:00
parent 0834f58831
commit e3db2fce08

View file

@ -3,6 +3,7 @@
#include "../build/src/audio/clips.h" #include "../build/src/audio/clips.h"
#include "../audio/soundplayer.h" #include "../audio/soundplayer.h"
#include "../scene/scene.h" #include "../scene/scene.h"
#include "../build/src/audio/clips.h"
struct CheatCodePattern gCheatCodes[CheatCodeCount] = { struct CheatCodePattern gCheatCodes[CheatCodeCount] = {
[CheatCodeUnlockGun] = { [CheatCodeUnlockGun] = {
@ -11,7 +12,7 @@ struct CheatCodePattern gCheatCodes[CheatCodeCount] = {
}, },
[CheatCodeHighJump] = { [CheatCodeHighJump] = {
{'u', 'd', 'u', 'd', 'u', 'd', 'r', 'r'}, {'u', 'd', 'u', 'd', 'u', 'd', 'r', 'r'},
SOUND_ID_NONE, SOUNDS_BUTTONCLICKRELEASE,
}, },
}; };