X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=direct.c;h=aebe56648760f3ee3add972e7ef1b68eb56c44de;hp=b7dfb853791d4e236d8803c2ec4ca576b20312d0;hb=968958cccf9201debee2cb0d4856cb5b55c6867d;hpb=2161b198b7b333147c89ef0346d8e9bb6ab9ffd9 diff --git a/direct.c b/direct.c index b7dfb85..aebe566 100644 --- a/direct.c +++ b/direct.c @@ -990,20 +990,20 @@ int d_dc(WORD siz) if ((challoc - ch_size) < i) chcheck(i); - if (stringtype == NORMAL) - { - for (p = string[tok[1]]; *p != EOS; p++) - D_byte(*p); - } - else if(stringtype == A8INT) - { - for (p = string[tok[1]]; *p != EOS; p++) - D_byte(strtoa8[*p]); - } - else - { - error("String format not supported yet"); - } + if (stringtype == NORMAL) + { + for(p=string[tok[1]]; *p!=EOS; p++) + D_byte(*p); + } + else if(stringtype == A8INT) + { + for(p=string[tok[1]]; *p!=EOS; p++) + D_byte(strtoa8[*p]); + } + else + { + error("String format not supported... yet"); + } tok += 2;