VAXStations: Fix set model message text when video isn't available

This commit is contained in:
Mark Pizzolato 2018-07-13 02:25:22 -07:00
parent 097eb7b6fc
commit 4431350bd1
3 changed files with 3 additions and 3 deletions

View file

@ -551,7 +551,7 @@ else if (MATCH_CMD(gbuf, "VAXSTATION") == 0) {
strcpy (sim_name, "VAXStation I (KA610)"); strcpy (sim_name, "VAXStation I (KA610)");
reset_all (0); /* reset everything */ reset_all (0); /* reset everything */
#else #else
return sim_messagef(SCPE_ARG, "Simulator built without Graphic Device Support"); return sim_messagef(SCPE_ARG, "Simulator built without Graphic Device Support\n");
#endif #endif
} }
else else

View file

@ -1025,7 +1025,7 @@ else if (MATCH_CMD(gbuf, "VAXSTATION") == 0) {
strcpy (sim_name, "VAXStation II (KA630)"); strcpy (sim_name, "VAXStation II (KA630)");
reset_all (0); /* reset everything */ reset_all (0); /* reset everything */
#else #else
return sim_messagef(SCPE_ARG, "Simulator built without Graphic Device Support"); return sim_messagef(SCPE_ARG, "Simulator built without Graphic Device Support\n");
#endif #endif
} }
else else

View file

@ -1848,7 +1848,7 @@ else if (MATCH_CMD(gbuf, "VAXSTATION") == 0) {
vs_dev.flags = vs_dev.flags & ~DEV_DIS; /* enable mouse */ vs_dev.flags = vs_dev.flags & ~DEV_DIS; /* enable mouse */
reset_all (0); /* reset everything */ reset_all (0); /* reset everything */
#else #else
return sim_messagef(SCPE_ARG, "Simulator built without Graphic Device Support"); return sim_messagef(SCPE_ARG, "Simulator built without Graphic Device Support\n");
#endif #endif
} }
else else