Browse Source

fixed typo for -b= setting

naelstrof 11 years ago
parent
commit
ed384cf57e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      options.cpp

+ 1
- 1
options.cpp View File

32
     // It looks complicated because you have to have spaces for delimiters for sscanf.
32
     // It looks complicated because you have to have spaces for delimiters for sscanf.
33
     for ( int i=0; i<argc; i++ ) {
33
     for ( int i=0; i<argc; i++ ) {
34
         std::string arg = argv[i];
34
         std::string arg = argv[i];
35
-        if ( matches( arg, "--b=", "--bordersize=" ) ) {
35
+        if ( matches( arg, "-b=", "--bordersize=" ) ) {
36
             int err = parseInt( arg, &m_borderSize );
36
             int err = parseInt( arg, &m_borderSize );
37
             if ( err ) {
37
             if ( err ) {
38
                 return 1;
38
                 return 1;