diff options
author | Tiago Vignatti <tiago.vignatti@nokia.com> | 2009-08-28 16:05:04 +0300 |
---|---|---|
committer | Tiago Vignatti <tiago.vignatti@nokia.com> | 2009-08-28 16:05:04 +0300 |
commit | 2a806d7fa372e28d039761c9b4087cf812e8e46b (patch) | |
tree | 25c227251125b78c5053d47872b9ebe4717e80b1 /os | |
parent | 9040dab76182d1a019ca7fef7b29733d2c199e61 (diff) |
os: remove unused -cursor option
Signed-off-by: Tiago Vignatti <tiago.vignatti@nokia.com>
Diffstat (limited to 'os')
-rw-r--r-- | os/utils.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/os/utils.c b/os/utils.c index 00abd6396..3718b170c 100644 --- a/os/utils.c +++ b/os/utils.c @@ -482,7 +482,6 @@ void UseMsg(void) ErrorF("-c turns off key-click\n"); ErrorF("c # key-click volume (0-100)\n"); ErrorF("-cc int default color visual class\n"); - ErrorF("-cursor enable the cursor (default)\n"); ErrorF("-nocursor disable the cursor\n"); ErrorF("-core generate core dump on fatal error\n"); ErrorF("-dpi int screen resolution in dots per inch\n"); @@ -666,10 +665,6 @@ ProcessCommandLine(int argc, char *argv[]) { EnableCursor = FALSE; } - else if ( strcmp( argv[i], "-cursor") == 0) - { - EnableCursor = TRUE; - } else if ( strcmp( argv[i], "-dpi") == 0) { if(++i < argc) |