The Dink Network

Reply to Re: New *WORKING* cross-platform editor

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
October 4th 2011, 10:44 AM
dinkdead.gif
...

...

Give?

I'm sure I can nick an extra cookie jar from Kyle.

One thing though, DinkC is known to cause problems when changing variable values after an if statement without the braces. In your compiled script it only does that inside a nested if, dunno if that still might be better with all braces...
if (&m3d != 1)
{
  if (&m3d != 3)
  {
    &tmp0 = 0;
  }
}


And it also seems to make the code a lot longer, might this sometimes make it slower to run than "real" DinkC? Especially when it gets more complicated stuff. Eg, here one variable is split into three (problems with hitting the limit?) and some are initialised several times which seems a bit superfluous.