diff options
Diffstat (limited to 'graphics/src/render.rs')
| -rw-r--r-- | graphics/src/render.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/src/render.rs b/graphics/src/render.rs index fe8ff92..7bae4e0 100644 --- a/graphics/src/render.rs +++ b/graphics/src/render.rs @@ -152,11 +152,11 @@ struct Textures { } impl Textures { fn new(handle: &mut RaylibHandle, thread: &RaylibThread) -> crate::Result<Self> { - let atlas = load_texture!(handle, thread, "assets/atlas.bmp"); - let player = load_texture!(handle, thread, "assets/player.bmp"); - let zombie = load_texture!(handle, thread, "assets/zombie.bmp"); - let error = load_texture!(handle, thread, "assets/error.bmp"); - let font = load_texture!(handle, thread, "assets/font.bmp"); + let atlas = load_texture!(handle, thread, "assets/bmp/atlas.bmp"); + let player = load_texture!(handle, thread, "assets/bmp/player.bmp"); + let zombie = load_texture!(handle, thread, "assets/bmp/zombie.bmp"); + let error = load_texture!(handle, thread, "assets/bmp/error.bmp"); + let font = load_texture!(handle, thread, "assets/bmp/font.bmp"); Ok(Self { atlas, |