[CODE]Easy surface blitting with exact x,y(SDL) Add SDL to the title somebody / [php]void BlitXY(int x, int y, SDL_Surface *source, SDL_Surface *dest) { SDL_Rect xy; xy.x = x; xy.y = y; SDL_BlitSurface(source,NULL,dest,&xy); }[/php]