random fixes

This commit is contained in:
lizzie 2026-05-19 09:33:56 +00:00
parent 4bdd84c962
commit c9e8363569
4 changed files with 16 additions and 11 deletions

View file

@ -220,13 +220,19 @@ int main(int argc, char** argv) {
std::optional<int> selected_user{};
std::optional<u16> override_gdb_port{};
bool use_multiplayer = false;
bool fullscreen = false;
std::string nickname{};
std::string password{};
std::string address{};
std::string input_profile{};
u16 port = Network::DefaultRoomPort;
// Platforms that start with fullscreen
#if defined(__OPENORBIS__) || defined(__ANDROID__)
bool fullscreen = true;
#else
bool fullscreen = false;
#endif
static struct option long_options[] = {
// clang-format off
{"debug", no_argument, 0, 'd'},