mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
- Changed a few default starting / settings options:
o Set default IMP charaters to 1 in the start new game screen o Set default game style to "SCI-FI" in the start new game screen o Disabled "NCTH" in the default ingame options git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@4902 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
@@ -545,8 +545,8 @@ UINT32 GameInitOptionsScreenInit( void )
|
||||
break;
|
||||
}
|
||||
|
||||
// Game Style (Default: Realistic = 0)
|
||||
gGameOptions.ubGameStyle = (UINT8)props.getIntProperty(JA2SP_INI_INITIAL_SECTION, JA2SP_GAME_STYLE, STYLE_REALISTIC);
|
||||
// Game Style (Default: Sci Fi = 1)
|
||||
gGameOptions.ubGameStyle = (UINT8)props.getIntProperty(JA2SP_INI_INITIAL_SECTION, JA2SP_GAME_STYLE, STYLE_SCIFI);
|
||||
|
||||
// Enemies Drop All Items (Default: Off = 0)
|
||||
gGameOptions.fEnemiesDropAllItems = (BOOLEAN)props.getIntProperty(JA2SP_INI_INITIAL_SECTION, JA2SP_ENEMIES_DROP_ALL_ITEMS, 0);
|
||||
@@ -2971,8 +2971,8 @@ UINT32 GameInitOptionsScreenInit( void )
|
||||
break;
|
||||
}
|
||||
|
||||
// Game Style (Default: Realistic = 0)
|
||||
gGameOptions.ubGameStyle = (UINT8)props.getIntProperty(JA2SP_INI_INITIAL_SECTION, JA2SP_GAME_STYLE, STYLE_REALISTIC);
|
||||
// Game Style (Default: Sci Fi = 0)
|
||||
gGameOptions.ubGameStyle = (UINT8)props.getIntProperty(JA2SP_INI_INITIAL_SECTION, JA2SP_GAME_STYLE, STYLE_SCIFI);
|
||||
|
||||
// Enemies Drop All Items (Default: Off = 0)
|
||||
gGameOptions.fEnemiesDropAllItems = (BOOLEAN)props.getIntProperty(JA2SP_INI_INITIAL_SECTION, JA2SP_ENEMIES_DROP_ALL_ITEMS, 0);
|
||||
|
||||
Reference in New Issue
Block a user