Search results

  1. Y

    Open2x Makefile

    do you have OPEN2X set in your environment + path? what happens if you type arm-open2x-linux-gcc -v if you dont get any output its not setup right in your path. CC = arm-open2x-linux-gcc CPP = arm-open2x-linux-g++ add a -static to your LIBS line I use a different build system from make...
  2. Y

    Getting Mikmod Working

    open2x. get the svn toolchain + build it, then download the prebult library package and install it.
  3. Y

    Code::blocks Linux

    Orkie, have you run into any issues with anjuta? on my ubuntu amd64 7.04 box anjuta crashes a lot its so unreliable, older versions were not so bad. I use jEdit myself, and kdevelop when I can (if only you can have a meta project in kdevelop instead of a big ass huge project that it sets up so...
  4. Y

    Getting Mikmod Working

    your on windows, so you need to put libmikmod-config into your path, it should be an executable (I dont know if its compiled or a script). you could try putting it in the same directory as gcc.exe and see if it works.
  5. Y

    Allegro

    QUOTE Make: C:windowscommand.com: command not found means your using backslackes instead of forward slashes. c:\windows\command.com should be c:/windows/command.com OR c:\\windows\\command.com use double back slashes if its looking for comspec, its an environment variable that should be in...
  6. Y

    Interested In Making Homebrew Games.

    Attempting to start with an RPG is a huge task, they ar very big and complex games (the devil is in the balancing and details). Write a pong game with high score and computer ai. Rehash the pong code to a breakout clone. Start small to get a feel. It can be long and tedious and requires many...
  7. Y

    The Best Rpgs From All Systems

    see this long thread on the exact same subject http://www.gp32x.de/board/index.php?showtopic=37731 and this one; http://www.gp32x.de/board/index.php?showtopic=34094
  8. Y

    GP2X Sdl_endian.h

    yeah your get string is coming back with 1 extra 00. that or you passing in the wrong length.
  9. Y

    New Gp2x F-200

    I'm unconvinced. touch screen in a revision? they must have just run out of non touch screens. now we are going to get software that relies on the touch that locks out previous revisions. lets hope there is a reliable way to detect that its a mk3. I dont like such radical changes in a...
  10. Y

    Gba Bios / Amiga Kickstart Rom Required!

    or buy amiga forever cd which has all the roms etc on it
  11. Y

    Question On Malloc And Free.

    just be aware that his macro is a multiline macro so such like CODE if(blah == blahblah) q = mymalloc(1000); can print results for an uninitialized variable.... what I would suggest, for C, use this ( http://directory.fsf.org/memwatch.html ) you just do include "memwatch.h" and compile...
  12. Y

    100 Commodore 64 Games In 10 Minutes

    6:12 is stormlord. last one doesnt ring any bells for me. tho I wouldnt say the character looks like halloween harry...
  13. Y

    Open2x Toolchain Woes

    if you extracted it, it exists. maybe you didnt define your path correctly?
  14. Y

    GP2X Sdl_ttf Printf Functions

    i havnt looked at the code but how hard can it be to vsprintf to a buffer then use sdl_ttf to print that string that we need a lib for it thats licensed??
  15. Y

    Question About Scummvm

    the level9 interp i think can play speccy files, bbc files, dos files. magnetic needs to convert its games to native format so youd have to do that prior to dropping them onto the sd card. could just write a version of GLK that uses a popup keyboard then recomp l9 + magnetic (since I think they...
  16. Y

    Question About Scummvm

    the level9 interpreter could be pretty easily ported to gp2x, just need some popup keyboard i guess. could also port the magnetc interpreter as well
  17. Y

    GP2X Can Someone Please Explain Subversion (svn) To Me?

    i only ever use the command line version of svn, im not sure about all the 'files and folders' it makes. the .svn is invisible, i mean there is no reason AT ALL you should go near the .svn directory. ive switched to bzr but still do a lot of svn stuff for other things im not sure about a...
  18. Y

    Tvout Resolution With Open2x Prebuilt Lib

    im doing hwsurface with 16bpp. dont forget overscan, you wont get the full 360x288 / 360x240 etc I have to take 15% off width and 12% off height for it to be ok on my tv. im using open2x built myself from svn
  19. Y

    My First Fenix Project

    id love to see you get this working! cauldron 1+2 rocked so bad on the c64!! :) and they were two of the damn hardest games ever. pumpkins revenge!!!
  20. Y

    How Long Do These Things Take?

    Fishguts is approaching a year in development. Core engine work is pretty easy, content is really hard. I have a main story arc, the hard part is the NPC dialogue and spreading + linking clues throughout the world and tieing in all the things that happen in the game and such. with a 5 week old...
Back
Top