Jump to content

Murcho

Members
  • Posts

    3
  • Joined

  • Last visited

Murcho's Achievements

Combat Commando

Combat Commando (1/9)

2

Reputation

  1. I'd like to put a pre order down for 2 carts. Can I have one that can fit in the Lynx 1 and one for Lynx 2. Thanks!
  2. Hi guys, Sorry I was away on holidays so only just got back to this. So a combination of your suggestions led me to a solution so thanks to both! For anyone else coming across this problem, it was a 64 bit OS problem. I was running all of this under Ubuntu 64 bit 14.04. Running sprpck with the -v option printed out all the info for the BMP data, which spat out some enormous numbers that seemed very wrong, which pointed to incorrect data types. At the top of bmp.h are the defines for data types : #define WORD unsigned short #define DWORD unsigned long #define LONG long which map to 32 bit data types. To get sprpck working under 64 bit OS (and this might be different per OS, check here: http://www.unix.org/whitepapers/64bit.html for the different possible types), I had to change the defines to : #define WORD unsigned short #define DWORD unsigned int #define LONG int This fixed my problems. Thanks again to @sage and @obschan for the help!
  3. Hi everyone, After discovering 3 of our Atari Lynx machines at my parents place recently, I decided to give Lynx programming a go, and I've been working through the excellent series at https://atarilynxdeveloper.wordpress.com/series/atarilynxprogrammingtutorial/ I've set up using Ubuntu instead of Windows (I was having all sorts of problems getting started under Windows) and so I've found the modified source for sprpck here http://atariage.com/forums/topic/166552-lynx-sprite-packing-tool/?p=2080209 and got that compiling under Ubuntu. I've got my Makefile set up to try and compile the bmp file, but I'm getting a couple of issues. First is complaining about RLE-bitmaps not being supported. I've tried saving out of several different programs, and I managed to save out of one (I can't even remember which one now), which led to the second problem. When I use the BMP that doesn't complain about RLE, I get the error : make: *** [robot.o] Segmentation fault (core dumped) So after banging my head for several hours I'm caving in and asking for help. 1. What programs do you use to save out a bitmap files compatible with sprpck? 2. Any ideas why I would be getting this Segmentation fault? Thanks for the help.
×
×
  • Create New...