Skip to content

Commit

Permalink
BESM6: Fixed to use SCP provided sim_strcasecmp()
Browse files Browse the repository at this point in the history
  • Loading branch information
markpizz committed Jan 18, 2017
1 parent 34ffe98 commit e9b5115
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BESM6/besm6_tty.c
Original file line number Diff line number Diff line change
Expand Up @@ -406,9 +406,9 @@ t_stat tty_setrate (UNIT *up, int32 v, CONST char *cp, void *dp) {
t_stat tty_setturbo (UNIT *up, int32 v, CONST char *cp, void *dp) {
if (!cp)
return SCPE_MISVAL;
if (!strcasecmp(cp, "ON"))
if (!sim_strcasecmp(cp, "ON"))
tty_turbo = 1;
else if (!strcasecmp(cp, "OFF"))
else if (!sim_strcasecmp(cp, "OFF"))
tty_turbo = 0;
else
return SCPE_ARG;
Expand Down

0 comments on commit e9b5115

Please sign in to comment.