By using this site, you agree to our Privacy Policy and our Terms of Use. Close
NJ5 said:
JaggedSac said:
twesterm said:
Depends I think, though I don't know on what.

I've heard of people getting their original machine back and then I've heard of people getting machines with HDMI ports back when they didn't have one before.

And on a somewhat related and interesting note-- my dev kit RRoD'd yesterday. >_>

Twestern, since you have a dev kit, I have a question for ya.

I have an affinity to use Singletons in my code, but most of the example game code I have seen all use statics instead.  Is there a large enough speed difference for me to change my ways?

 

The best way to find out is to benchmark it yourself. Make two simple equal programs using each approach (as similar as possible otherwise), run a few method calls in a loop with a million iterations and measure the CPU time taken. Most  languages have a way to do time measurements and print the timing out.

 

It is a little different when running things on the 360.  I will have to check out how to log things when debugging on there.  There also isn't a way to profile the 360 runtime either I do not think.

 

Just because something runs one way on the computer, does not mean it will run that way on the 360.  The compilers are very different.  I was just gonna ask a quick question so I did not have to do any work myself.