GP2X Rlyeh's Minimal Sdk


slygamer

Active Member
Joined
Sep 19, 2005
Messages
795
Location
Brisbane, Australia
Website
Visit site
When Rlyeh posts a new version of his SDK on retrodev.info, he posts it at rafb.net/paste. Unfortunately, rafb.net deletes pastes that are a few days old, so the most recent version of Minimal SDK (v0.6) is now a 404 Not Found error.

Did anyone manage to grab v0.6 before it went bye-bye?

Rlyeh, can you post the SDK somewhere more permanent?
 
GP2X minimal library v0.7 by rlyeh

Change:
Code:
#define gp2x_video_color8 (C,R,G,B)  gp2x_palette[C<<1+0]=(G<<8)|B,gp2x_palette[C<<1+1]=R;
To:
Code:
#define gp2x_video_color8(C,R,G,B)  gp2x_palette[(C<<1)+0]=(G<<8)|B;gp2x_palette[(C<<1)+1]=R;
 
Back
Top