Path: chuka.playstation.co.uk!news From: "Alex Herbert" Newsgroups: scee.yaroze.beginners Subject: Re: map-tastic tile question Date: Thu, 17 Jun 1999 23:18:38 +0100 Organization: PlayStation Net Yaroze (SCEE) Lines: 36 Message-ID: <7kbs3j$4fj8@chuka.playstation.co.uk> References: <7kalnc$4fj2@chuka.playstation.co.uk> <7kbc23$4fj3@chuka.playstation.co.uk> NNTP-Posting-Host: 195.166.145.136 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Robert Shand wrote in message news:7kbc23$4fj3@chuka.playstation.co.uk... > > Ok this probably isn't on the lines that you were thinking of but it should > still improve speed a teeny little bit. > > When doing for loops do -- instead of ++, apparently the Playstation is ever > so slightly quicker at -- > > For example > > int i > for(i=100000,i!=0;i--) > { > printf("Hello world\n"); > } > > Hope that helps > > Bob > bob@shandfam.freeserve.co.uk > > > I can't see why -- should be any faster than ++. I would imagin that it's the comparison with 0 which is quicker. Herbs