diff options
Diffstat (limited to 'Screen.h')
-rw-r--r-- | Screen.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,8 +8,8 @@ class Screen { public: Screen(); - /* blits src onto dst, at position x, y */ - void blit(int x, int y, SDL_Surface* src, SDL_Surface* dst, SDL_Rect* clip = NULL); + /* blits src onto screen, at position x, y */ + void blit(int x, int y, SDL_Surface* src, SDL_Rect* clip = NULL); /* Swap screen buffers */ void flip(); |