summaryrefslogtreecommitdiff
path: root/src/texture.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/texture.c')
-rw-r--r--src/texture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/texture.c b/src/texture.c
index 3606274..e046f6f 100644
--- a/src/texture.c
+++ b/src/texture.c
@@ -15,7 +15,7 @@ const SDL_Rect tt_texture_player = { 0, 0, 0, 0 };
SDL_Texture *tt_texture_load(SDL_Renderer *rdr)
{
- SDL_Surface *surf = SDL_LoadBMP("data/textures.bmp");
+ SDL_Surface *surf = SDL_LoadBMP("data/tiles.bmp");
SDL_Texture *res = SDL_CreateTextureFromSurface(rdr, surf);
SDL_FreeSurface(surf);
return res;