Search results

  1. R

    GP32 Some Tricks For Division

    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)
  2. R

    Camera Add-on?

    Really? I bet I could figure it out for say...$5000. ^_^ gp32_console
  3. R

    GP32 Simple Source Code

    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...
  4. R

    Walkin' Butt Naked Round Times Square (part 2)

    My gp was acting weird. Then I changed the batteries. Next it was fine. Finally I was happy. In conclusion, change the batteries.
  5. R

    GP32 2 Easy Questions

    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...
  6. R

    Free Gpcinema After April?

    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.
  7. R

    GP32 Mr.mirkos Sdk Replacement

    Like I said, I'm new to the programming thing. What is ADS in M$-windows? I tried google, but all it finds is advertisments.
  8. R

    GP32 Mr.mirkos Sdk Replacement

    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...
  9. R

    Gp cinema

    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.
  10. R

    Any gp32 text viewers have a search function?

    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.
Back
Top