diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-05-11 21:12:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-05-11 21:56:22 +0300 |
commit | 7cf130e2deb98987925a6682203a4773988daaf9 (patch) | |
tree | cf37a87e4fdc5220f0c95cc93c78fa8d6e01daa9 /src/options.h | |
parent | a75d8e305b43e2797bfd93cd481868d858712146 (diff) | |
download | plus-7cf130e2deb98987925a6682203a4773988daaf9.tar.gz plus-7cf130e2deb98987925a6682203a4773988daaf9.tar.bz2 plus-7cf130e2deb98987925a6682203a4773988daaf9.tar.xz plus-7cf130e2deb98987925a6682203a4773988daaf9.zip |
Add command line option for use default sdl cursor.
Diffstat (limited to 'src/options.h')
-rw-r--r-- | src/options.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/options.h b/src/options.h index d0ee5c34b..82839482b 100644 --- a/src/options.h +++ b/src/options.h @@ -64,7 +64,8 @@ struct Options final noOpenGL(false), safeMode(false), testMode(false), - ipc(false) + ipc(false), + defaultCursor(false) {} A_DELETE_COPY(Options) @@ -94,6 +95,7 @@ struct Options final bool safeMode; bool testMode; bool ipc; + bool defaultCursor; }; #endif // OPTIONS_H |