]> git.sur5r.net Git - cc65/blobdiff - src/common/tgttrans.c
Fixed LinuxDoc Tools issues in some verbatim blocks in the Atari document.
[cc65] / src / common / tgttrans.c
index 95bdf866266b8c42347e442a2055e116fb12865d..bd20565056d629826956f150386feec8988556d2 100644 (file)
@@ -124,6 +124,6 @@ void TgtTranslateStrBuf (StrBuf* Buf)
 void TgtTranslateSet (unsigned Index, unsigned char C)
 /* Set the translation code for the given character */
 {
-    CHECK (Index > 0 && Index < sizeof (Tab));
+    CHECK (Index < sizeof (Tab));
     Tab[Index] = C;
 }