Little Alien

Play weapon sounds on higher volume
Adjustable in ja2.ini


git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@53 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
lalien
2006-05-04 12:53:59 +00:00
parent ff3f4ced29
commit 973325bddc
2 changed files with 40 additions and 8 deletions
+8 -1
View File
@@ -19,6 +19,7 @@
#define SET_TACTICAL_AI "JA2 Tactical AI Settings"
#define SET_GRAPHIC "JA2 Graphic Settings"
#define SET_GAMEPLAY "JA2 Gameplay Settings"
#define SET_SOUND "JA2 Sound Settings"
UINT8 gubDeadLockDelay = 15;
@@ -49,10 +50,12 @@ BOOLEAN gfEnableEmergencyButton_SkipStrategicEvents = FALSE;
BOOLEAN gfAllowMilitiaGroups = TRUE;
BOOLEAN gfAllowReinforcments = TRUE;
BOOLEAN gfAllowReinforcmentsOnlyInCity = FALSE;
UINT32 guiBaseQueenPoolIncrement = 60;
UINT32 guiBaseQueenPoolIncrement = 60;
BOOLEAN fAllowTacticalMilitiaCommand = TRUE;
UINT32 guiWeaponSoundEffectsVolume = 0;
typedef struct
{
CHAR8* strParamName;
@@ -75,6 +78,7 @@ enum
TSetting gpSettings[] =
{
//Video settings
{"fVSync", SET_RESOLUTION, &gfVSync, VT_BOOLEAN},
{"PlayerTurnSpeedUpFactor", SET_TURN_SPEED, (LPVOID)&gubPlayerTurnSpeedUpFactor, VT_UINT8},
@@ -83,6 +87,9 @@ TSetting gpSettings[] =
{"MilitiaTurnSpeedUpFactor", SET_TURN_SPEED, (LPVOID)&gubMilitiaTurnSpeedUpFactor, VT_UINT8},
{"CivTurnSpeedUpFactor", SET_TURN_SPEED, (LPVOID)&gubCivTurnSpeedUpFactor, VT_UINT8},
//Sound settings
{"WeaponSoundEffectsVolume", SET_SOUND, &guiWeaponSoundEffectsVolume, VT_UINT32},
// Militia Settings
{"AllowTacticalMilitiaCommand", SET_TACTICAL, &fAllowTacticalMilitiaCommand, VT_BOOLEAN},