equal
deleted
inserted
replaced
52 SDL_Surface *screen; |
52 SDL_Surface *screen; |
53 SDL_Surface *surface; |
53 SDL_Surface *surface; |
54 |
54 |
55 /* Make sure the size requested doesn't overflow our datatypes */ |
55 /* Make sure the size requested doesn't overflow our datatypes */ |
56 /* Next time I write a library like SDL, I'll use int for size. :) */ |
56 /* Next time I write a library like SDL, I'll use int for size. :) */ |
57 if ( width > 16384 || height > 16384 ) { |
57 if ( width >= 16384 || height >= 65536 ) { |
58 SDL_SetError("Width or height is too large"); |
58 SDL_SetError("Width or height is too large"); |
59 return(NULL); |
59 return(NULL); |
60 } |
60 } |
61 |
61 |
62 /* Check to see if we desire the surface in video memory */ |
62 /* Check to see if we desire the surface in video memory */ |