mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-22 05:07:01 +02:00
random fixes
This commit is contained in:
parent
4bdd84c962
commit
c9e8363569
4 changed files with 16 additions and 11 deletions
|
|
@ -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'},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue