Remove BOOLs from launch option params

This commit is contained in:
notmatthewbeshay 2026-03-10 21:49:58 +11:00
parent 4e975540a9
commit 3e40aa45af

View file

@ -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"";