A stupid way to do division:
int divide(int numerator, int denominator)
{
if(numerator < denominator)
return 0:
return 1 + divide(numerator - denominator, denominator);
}
Yay for me! B)
I was reading the pdf from this page on the GPSDK and it says there are all these coding examples for the specific thing they are explaining. I've searched this and a couple other gp32 sites for these examples but I can't find them. I figure isolated examples will be most helpful. If you know...
It's a good thing the motto of this section is "no such thing as a stupid question".
1) I downloaded devkitadv a while ago and I didn't get a tutorial with it. What's the function that resets your gp32?
2) How hard is it to make my game go "beep" or "bloop"? If I can do it with something...
Where are you getting your simpsons episodes from? Do you have software for ripping from a DVD or something or are you using non-legal methods? The only reason I didn't buy gpCinema was because I couldn't find anything worth watching on it.
I'm new to the whole "programming" thing beyond what they teach in school. Does it matter what C/C++ compiler you use? I have access to a linux compiler thru school, but I don't know what kind. The only reason I'm asking is because it looks like this package was made for newbs like me so I...
Get a geocities account or something. :D
Does movielink only encode at 10fps? From what I hear VirtualDub is complicated if you're a n00b like I am but movielink isn't.
Like the title says, I was wondering if any of the text views let you do a search for a string. I like keeping walkthroughs on my computer but I only ever need to read one section at a time which I can just search for. Any help would be great.