Merge pull request #3335 from mailwl/citra-sdl-small-fix
citra(SDL) small fixes: fix fall-through
This commit is contained in:
commit
337e9e12eb
|
@ -11,10 +11,8 @@
|
||||||
// This needs to be included before getopt.h because the latter #defines symbols used by it
|
// This needs to be included before getopt.h because the latter #defines symbols used by it
|
||||||
#include "common/microprofile.h"
|
#include "common/microprofile.h"
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#include <getopt.h>
|
|
||||||
#else
|
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
|
#ifndef _MSC_VER
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -157,13 +155,14 @@ int main(int argc, char** argv) {
|
||||||
errno = EINVAL;
|
errno = EINVAL;
|
||||||
if (errno != 0)
|
if (errno != 0)
|
||||||
exit(1);
|
exit(1);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
case 'm': {
|
case 'm': {
|
||||||
use_multiplayer = true;
|
use_multiplayer = true;
|
||||||
std::string str_arg(optarg);
|
const std::string str_arg(optarg);
|
||||||
// regex to check if the format is nickname:password@ip:port
|
// regex to check if the format is nickname:password@ip:port
|
||||||
// with optional :password
|
// with optional :password
|
||||||
std::regex re("^([^:]+)(?::(.+))?@([^:]+)(?::([0-9]+))?$");
|
const std::regex re("^([^:]+)(?::(.+))?@([^:]+)(?::([0-9]+))?$");
|
||||||
if (!std::regex_match(str_arg, re)) {
|
if (!std::regex_match(str_arg, re)) {
|
||||||
std::cout << "Wrong format for option --multiplayer\n";
|
std::cout << "Wrong format for option --multiplayer\n";
|
||||||
PrintHelp(argv[0]);
|
PrintHelp(argv[0]);
|
||||||
|
@ -188,10 +187,6 @@ int main(int argc, char** argv) {
|
||||||
std::cout << "Address to room must not be empty.\n";
|
std::cout << "Address to room must not be empty.\n";
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
if (port > 65535) {
|
|
||||||
std::cout << "Port must be between 0 and 65535.\n";
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'h':
|
case 'h':
|
||||||
|
|
Loading…
Reference in New Issue