|
From: <sj...@de...> - 2002-12-15 02:57:32
|
> Hello, > It seems my C is a bit rusty, could some one explain how the following > #define is expanded. I understand simple macro's, but can't figure out how > the game states are being loaded. Easiest way would be to run the code through cpp. I don't know the equivalent way under Windows, but under Unix-class OSs, just run: cpp file.c (with appropriate -I flags), and the result is piped to stdout. I'm too lazy to do it right now myself :) As an aside -- looks like there are issues with the SDL frameworks under Mac OS X (10.2.2). Time to download and compile Unix-based libraries, and nuke the frameworks, methinks. Ho hum. If nothing else, I'm learning heaps about how the Mac OS compile system works. :) |