mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-20 05:57:15 +00:00
Remove BOOLs from launch option params
This commit is contained in:
parent
4e975540a9
commit
3e40aa45af
|
|
@ -238,24 +238,24 @@ typedef struct _JoinMenuInitData
|
||||||
// More Options
|
// More Options
|
||||||
typedef struct _LaunchMoreOptionsMenuInitData
|
typedef struct _LaunchMoreOptionsMenuInitData
|
||||||
{
|
{
|
||||||
BOOL bOnlineGame;
|
bool bOnlineGame;
|
||||||
BOOL bInviteOnly;
|
bool bInviteOnly;
|
||||||
BOOL bAllowFriendsOfFriends;
|
bool bAllowFriendsOfFriends;
|
||||||
|
|
||||||
BOOL bGenerateOptions;
|
bool bGenerateOptions;
|
||||||
BOOL bStructures;
|
bool bStructures;
|
||||||
BOOL bFlatWorld;
|
bool bFlatWorld;
|
||||||
BOOL bBonusChest;
|
bool bBonusChest;
|
||||||
|
|
||||||
BOOL bPVP;
|
bool bPVP;
|
||||||
BOOL bTrust;
|
bool bTrust;
|
||||||
BOOL bFireSpreads;
|
bool bFireSpreads;
|
||||||
BOOL bTNT;
|
bool bTNT;
|
||||||
|
|
||||||
BOOL bHostPrivileges;
|
bool bHostPrivileges;
|
||||||
BOOL bResetNether;
|
bool bResetNether;
|
||||||
|
|
||||||
BOOL bOnlineSettingChangedBySystem;
|
bool bOnlineSettingChangedBySystem;
|
||||||
|
|
||||||
int iPad;
|
int iPad;
|
||||||
|
|
||||||
|
|
@ -268,11 +268,11 @@ typedef struct _LaunchMoreOptionsMenuInitData
|
||||||
_LaunchMoreOptionsMenuInitData()
|
_LaunchMoreOptionsMenuInitData()
|
||||||
{
|
{
|
||||||
memset((void*)this,0,sizeof(_LaunchMoreOptionsMenuInitData));
|
memset((void*)this,0,sizeof(_LaunchMoreOptionsMenuInitData));
|
||||||
bOnlineGame = TRUE;
|
bOnlineGame = true;
|
||||||
bAllowFriendsOfFriends = TRUE;
|
bAllowFriendsOfFriends = true;
|
||||||
bPVP = TRUE;
|
bPVP = true;
|
||||||
bFireSpreads = TRUE;
|
bFireSpreads = true;
|
||||||
bTNT = TRUE;
|
bTNT = true;
|
||||||
iPad = -1;
|
iPad = -1;
|
||||||
worldSize = 3;
|
worldSize = 3;
|
||||||
seed = L"";
|
seed = L"";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue