Home | Forums | What's new | Resources | |
SGL LIBRARIES MESSING ME UP! HELP! |
mrkotfw - Dec 30, 2002 |
mrkotfw | Dec 30, 2002 | |||
My code is: #include "sgl.h" void ss_main(void) { slPrint("hello, Sega Saturn!",slLocate(1,1)); while(1) { slSynch(); } } |
IBarracudaI | Dec 30, 2002 | |||
Have u followed Takashi's Tutorial??? (can be found in Saturn Dev Section, in the "Saturn Documentation") Just follow it and you shouldn't have any troubles... I hadn't.. |
mrkotfw | Dec 30, 2002 | |||
Ty guys, i just type "MAKE" to compile my game, i edit the makefile ? |
IBarracudaI | Dec 30, 2002 | |||
I think its because of this: you have: slInitSystem(TV320x244,NULL,1); you should have: slInitSystem(TV_320x224,NULL,1); notice the underscore before the resolution.... |
mrkotfw | Dec 30, 2002 | |||
it worked |