mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-08-20 09:57:09 +00:00
fix(audio): restore missing comma lost in upstream merge
A comma between "item.armor.equip_generic6" and "damage.critical" was accidentally dropped during an upstream merge, causing the two entries to be concatenated into a single string literal at compile time. This produced an invalid sound key and led to crashes when: - equipping armor - triggering critical hits
This commit is contained in:
parent
c2c4eb6ea8
commit
2ddf72a4eb
|
|
@ -269,7 +269,7 @@ const WCHAR *ConsoleSoundEngine::wchSoundNames[eSoundType_MAX]=
|
||||||
L"item.armor.equip_generic3",
|
L"item.armor.equip_generic3",
|
||||||
L"item.armor.equip_generic4",
|
L"item.armor.equip_generic4",
|
||||||
L"item.armor.equip_generic5",
|
L"item.armor.equip_generic5",
|
||||||
L"item.armor.equip_generic6"
|
L"item.armor.equip_generic6",
|
||||||
|
|
||||||
L"damage.critical", //eSoundType_DAMAGE_CRITICAL,
|
L"damage.critical", //eSoundType_DAMAGE_CRITICAL,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue