diff options
author | Aaron Roney <twitchax@gmail.com> | 2023-04-19 19:52:09 +0200 |
---|---|---|
committer | Aaron Roney <twitchax@gmail.com> | 2023-04-19 19:52:09 +0200 |
commit | 79e32127b3897424015b3f6842c87ea81e37efb1 (patch) | |
tree | a159947010812334e28ea4a1f7db56a107c56f12 /src/dedicated_room | |
parent | Fix formatting. (diff) | |
download | yuzu-79e32127b3897424015b3f6842c87ea81e37efb1.tar yuzu-79e32127b3897424015b3f6842c87ea81e37efb1.tar.gz yuzu-79e32127b3897424015b3f6842c87ea81e37efb1.tar.bz2 yuzu-79e32127b3897424015b3f6842c87ea81e37efb1.tar.lz yuzu-79e32127b3897424015b3f6842c87ea81e37efb1.tar.xz yuzu-79e32127b3897424015b3f6842c87ea81e37efb1.tar.zst yuzu-79e32127b3897424015b3f6842c87ea81e37efb1.zip |
Diffstat (limited to '')
-rw-r--r-- | src/dedicated_room/yuzu_room.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dedicated_room/yuzu_room.cpp b/src/dedicated_room/yuzu_room.cpp index c1e5c8caf..d707dabe2 100644 --- a/src/dedicated_room/yuzu_room.cpp +++ b/src/dedicated_room/yuzu_room.cpp @@ -225,7 +225,8 @@ int main(int argc, char** argv) { InitializeLogging(log_file); while (optind < argc) { - int arg = getopt_long(argc, argv, "n:d:s:p:m:w:g:u:t:a:i:l:hv", long_options, &option_index); + int arg = + getopt_long(argc, argv, "n:d:s:p:m:w:g:u:t:a:i:l:hv", long_options, &option_index); if (arg != -1) { switch (static_cast<char>(arg)) { case 'n': |