diff options
Diffstat (limited to 'main/app.hpp')
-rw-r--r-- | main/app.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/main/app.hpp b/main/app.hpp index 2876dbc8..1ac23dd2 100644 --- a/main/app.hpp +++ b/main/app.hpp @@ -99,10 +99,10 @@ private: GL::MultisampleTexture2D _msaa_color_texture{}; tile_shader _shader; - tile_atlas_ floor1 = loader.tile_atlas("floor-tiles.tga", {44, 4}); - tile_atlas_ floor2 = loader.tile_atlas("metal1.tga", {2, 2}); - tile_atlas_ wall1 = loader.tile_atlas("wood2.tga", {2, 2}); - tile_atlas_ wall2 = loader.tile_atlas("wood1.tga", {2, 2}); + tile_atlas_ floor1 = loader.tile_atlas("floor-tiles", {44, 4}); + tile_atlas_ floor2 = loader.tile_atlas("metal1", {2, 2}); + tile_atlas_ wall1 = loader.tile_atlas("wood2", {1, 1}); + tile_atlas_ wall2 = loader.tile_atlas("wood1", {1, 1}); floor_mesh _floor_mesh; wall_mesh _wall_mesh; |