So, I loaded a surface in, that contains a whole bunch of images, for example, a tilesheet. Now, I want to split every tile into its own surface. What is the correct way to chop it up?
CODE
SDL_surface *temp = SDL_SetClipRect(old_surface, some_rect);
Now, does that work at all, or does...