summaryrefslogtreecommitdiff
path: root/src/client/image.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/image.c')
-rwxr-xr-xsrc/client/image.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/image.c b/src/client/image.c
index d582193..3c3b40f 100755
--- a/src/client/image.c
+++ b/src/client/image.c
@@ -20,7 +20,7 @@ bool_t isImageInicialized()
}
/*
- * Inicialuzje globalny zoznam obrazkov
+ * Inicializuje globalny zoznam obrazkov
*/
void initImageData()
{
@@ -128,12 +128,12 @@ void drawImage(SDL_Surface *p, int x,int y, int px, int py, int w, int h)
dst_rect.x = x;
dst_rect.y = y;
-
+
src_rect.x = px;
src_rect.y = py;
src_rect.w = w;
src_rect.h = h;
-
+
SDL_BlitSurface(p, &src_rect, screen, &dst_rect);
}