| version 1.1 | | version 1.2 |
|---|
| | |
| if (!FindArg( "-nomouse" )) { | | if (!FindArg( "-nomouse" )) { |
| if (Inferno_verbose) printf( "\n%s", TXT_VERBOSE_4); | | if (Inferno_verbose) printf( "\n%s", TXT_VERBOSE_4); |
| if (FindArg( "-nocyberman" )) | | if (FindArg( "-nocyberman" )) |
| mouse_init(0); | | //added/edited on 1/13/00 by Victor Rachels to display mouse init errors |
| | | { if(!mouse_init(0)) |
| | | printf("\nError initializing mouse.\n"); } |
| else | | else |
| mouse_init(1); | | { if(!mouse_init(1)) |
| | | printf("\nError initializing mouse.\n"); } |
| | | //end this section addition - VR |
| } else { | | } else { |
| if (Inferno_verbose) printf( "\n%s", TXT_VERBOSE_5); | | if (Inferno_verbose) printf( "\n%s", TXT_VERBOSE_5); |
| } | | } |