]> Shamusworld >> Repos - rmac/blobdiff - direct.c
Version bump for last commit. ;-)
[rmac] / direct.c
index b7dfb853791d4e236d8803c2ec4ca576b20312d0..aebe56648760f3ee3add972e7ef1b68eb56c44de 100644 (file)
--- 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;