Advertisement

SDL Problem

Started by January 05, 2005 03:08 PM
1 comment, last by Mastadex 19 years, 8 months ago
I just made a bitmap image in paint, saved it as a 24bit bmp. what im trying to do is get this bitmap loaded and onto the screen. here is my code thus far, am i doing something wrong??

	SDL_Surface *screen;
	SDL_Surface *image;

	image = SDL_LoadBMP("d:\1.bmp");

	if (image > 0)
	{
		SDL_Rect sdest;
		sdest.x = 10;
		sdest.y = 10;
		SDL_BlitSurface(image, NULL, screen, &sdest);
	}
um, what's wrong? does the window not come up? does it not compile?
HxRender | Cornerstone SDL TutorialsCurrently picking on: Hedos, Programmer One
Advertisement
EDIT:

Apperently im out of it right now. I got it working tho.

[Edited by - Mastadex on January 5, 2005 5:15:03 PM]

This topic is closed to new replies.

Advertisement