Skip to content

Commit 90702fe

Browse files
committed
fix issue reported by Marrin where -h was overloaded
1 parent f421ba4 commit 90702fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ntvcm.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3282,7 +3282,7 @@ int main( int argc, char * argv[] )
32823282
#if defined( _WIN32 ) // Command line options are case sensitive on Linux/NetBSD...
32833283
ca = (char) tolower( ca );
32843284
#endif
3285-
if ( 'h' == ca || '?' == ca )
3285+
if ( '?' == ca )
32863286
help();
32873287
else if ( '8' == ca )
32883288
reg.fZ80Mode = false;

0 commit comments

Comments
 (0)