Blah
Wanna Be Programmer
Everything I try is corrupted
So, when will we get our gradesPSyMastR posted on Dec 18 2006 at 04:02 AM said:
PSyMastR posted on Dec 18 2006 at 04:02 AM said:
PSyMastR posted on Dec 18 2006 at 03:02 AM said:
torpor posted on Dec 18 2006 at 09:30 AM said:Any chance we could get a new thread and maybe a new front-page entry announcing this fact? Seems a bit of an odd way to announce the contest, burying the details in an older thread reminding people there are only '3 days left', when in fact the competition is now well and truly over ..
Well, I changed the path to my music folder. But it still tells me that it doesn't exist, then freezes scanning for media.Guyfawkes posted on Dec 18 2006 at 12:57 PM said:Cool, I hope everyone enjoys my game. Please remember to read the user guide even if only to set up the media player (takes 20 seconds) to get the full benefit of the game. And don't forget if you have a BOB + mouse the game is fully playable with it.
If you have any problems let me know and I will try and answer them. I will try out the other entries later today, my PC decided to break last night so using my laptop which has nothing installed
Hehe, forgot to "trim" ? Happens to me all the time, too.Guyfawkes posted on Dec 18 2006 at 03:57 PM said:couple of things to try, dont put a trailing space at the end of the path or add a new line or a space at the end of it.
There are legitimate uses for goto. You should use it to exit from a very deeply nested routine (otherwise you would have to use multiple if and break statements - which is really messy, and less efficient).PokeParadox posted on Dec 14 2006 at 09:18 AM said:goto is a no-no. (It's only left in for compatibility with older source)
break has its uses. (but if you can; use return, continue or some clear exit condition)
In JAVA (and I'm sure other languages as well) you can just use "return".Hanz™ posted on Dec 18 2006 at 07:53 PM said:There are legitimate uses for goto. You should use it to exit from a very deeply nested routine (otherwise you would have to use multiple if and break statements - which is really messy, and less efficient).PokeParadox posted on Dec 14 2006 at 09:18 AM said:goto is a no-no. (It's only left in for compatibility with older source)
break has its uses. (but if you can; use return, continue or some clear exit condition)
It does but if there is even more to do in a single function than an already deeply nested whatever then there's something really wrong with your design. Trust me, I see shitty code everytime I look at mineAlex. posted on Dec 19 2006 at 06:31 PM said:But doesn't return terminate the entire function, not just the series of nested loops?
- Alex