diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-22 13:21:41 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-22 13:21:41 -0500 |
| commit | d0adf3c6813bb9e357d74f7a606352c957530686 (patch) | |
| tree | addea6486c8cd8c18f2d8b3f0111268c6c2c1236 /graphics/src/render.rs | |
| parent | audio: fix merge (diff) | |
| download | DungeonCrawl-d0adf3c6813bb9e357d74f7a606352c957530686.tar.gz DungeonCrawl-d0adf3c6813bb9e357d74f7a606352c957530686.tar.bz2 DungeonCrawl-d0adf3c6813bb9e357d74f7a606352c957530686.zip | |
audio: move 'asm' files out of data segment
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, |