X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=misc.c;h=fbfee4fca954c6b05062a7152665533beaedae92;hb=3ed8b91eb7f636e49fd8e5f4cdea495ba410b6cb;hp=91f2dfa6ad6406a3400c614495da52163410a124;hpb=7ce9f7270f69f10514e20eb3c19d2db259af20b7;p=open-adventure.git diff --git a/misc.c b/misc.c index 91f2dfa..fbfee4f 100644 --- a/misc.c +++ b/misc.c @@ -3,6 +3,7 @@ #include #include #include +#include #include "advent.h" #include "database.h" @@ -50,7 +51,7 @@ void SPEAK(vocab_t msg) return; if (prmtyp == ascii_to_advent['S']) { SHFTXT(LNPOSN+2,-1); - INLINE[LNPOSN] = 55; + INLINE[LNPOSN] = ascii_to_advent['s']; if (PARMS[nparms] == 1) SHFTXT(LNPOSN+1,-1); ++nparms; @@ -94,7 +95,14 @@ void SPEAK(vocab_t msg) PUTTXT(PARMS[nparms],&state,casemake); PUTTXT(PARMS[nparms+1],&state,casemake); if (prmtyp == ascii_to_advent['C'] && INLINE[i] >= ascii_to_advent['a'] && INLINE[i] <= ascii_to_advent['z']) - INLINE[i] -= 26; + { + // Convert to uppercase. + // Round-trip to ASCII and back so that this code doesn't break when the mapping changes. + // This can be simplified when mapping goes away. + char this = advent_to_ascii[INLINE[i]]; + char uc_this = toupper(this); + INLINE[i] = ascii_to_advent[uc_this]; + } nparms += 2; continue; }