X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=src%2Fsst.c;h=0ae5598fda18feb55d90af6e39fc5e25ce446751;hp=d19698491d71a64611cf7b7a0fd6a99591a9d6cd;hb=0def1139fe1c02cd25c21fe26c9a9722debf4211;hpb=0f68a074434296ae409accdc39ba0142600ea255 diff --git a/src/sst.c b/src/sst.c index d196984..0ae5598 100644 --- a/src/sst.c +++ b/src/sst.c @@ -291,6 +291,10 @@ commands[] = { {"HELP", HELP, 0}, #define SEED 37 {"SEED", SEED, 0}, +#if BSD_BUG_FOR_BUG +#define VISUAL 38 + {"VISUAL", VISUAL, 0}, +#endif }; #define NUMCOMMANDS sizeof(commands)/sizeof(commands[0]) @@ -572,6 +576,11 @@ static void makemoves(void) if (key == IHREAL) seed = (int)aaitem; break; +#if BSD_BUG_FOR_BUG + case VISUAL: + visual(); // perform visual scan + break; +#endif } commandhook(commands[i].name, false); for (;;) {