diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-06-14 16:31:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-06-14 16:36:05 +0300 |
commit | 51a88d35e9b5e473eae80916a894ee95dc0e05d8 (patch) | |
tree | de206d344459c96cc5bc8ca3c9a863299922c63b /src/options.h | |
parent | 75402569f455321e5fd078a57c35b2032a3bdbaf (diff) | |
download | plus-51a88d35e9b5e473eae80916a894ee95dc0e05d8.tar.gz plus-51a88d35e9b5e473eae80916a894ee95dc0e05d8.tar.bz2 plus-51a88d35e9b5e473eae80916a894ee95dc0e05d8.tar.xz plus-51a88d35e9b5e473eae80916a894ee95dc0e05d8.zip |
Add --renderer command flag to override renderer
Diffstat (limited to 'src/options.h')
-rw-r--r-- | src/options.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/options.h b/src/options.h index ebd9069a8..def02200b 100644 --- a/src/options.h +++ b/src/options.h @@ -54,6 +54,7 @@ struct Options final screenshotDir(), test(), serverName(), + renderer(-1), serverPort(0), printHelp(false), printVersion(false), @@ -78,6 +79,7 @@ struct Options final std::string screenshotDir; std::string test; std::string serverName; + int renderer; uint16_t serverPort; bool printHelp; bool printVersion; |