Quote: "1>c:usersreidocumentsvisual studio 2008projectswelcome screenwelcome screenstart.h(95) : error C2665: 'dbStr' : none of the 2 overloads could convert all the argument types
1> c:program files (x86)the game creatorsdark gdkincludedarksdktext.h(37): could be 'char *dbStr(float)'
1> c:program files (x86)the game creatorsdark gdkincludedarksdktext.h(38): or 'char *dbStr(int)'"
void SplashScreen(string introtext)
{
char* introText = dbStr(introtext);
dbSetTextFont( "times new roman" );
dbSetTextSize(50);
dbText(dbScreenWidth()/2-dbTextWidth(introText)/2,dbScreenHeight()/2, introText );
dbText(0,0,introtext);
dbPrint ( "" );
dbColorBackdrop( dbRGB(0,0,0) );
//Camera Position and Variables
dbPositionCamera ( 0, 0, -5000 );
float fCameraAngleX = 0.0f;
float fCameraAngleY = 0.0f;
dbSetCameraRange(0.001,30000);
dbSuspendForKey();
dbCLS();
}