summaryrefslogtreecommitdiff
path: root/graphics/src/render.rs
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-11-22 13:21:41 -0500
committerFreya Murphy <freya@freyacat.org>2025-11-22 13:21:41 -0500
commitd0adf3c6813bb9e357d74f7a606352c957530686 (patch)
treeaddea6486c8cd8c18f2d8b3f0111268c6c2c1236 /graphics/src/render.rs
parentaudio: fix merge (diff)
downloadDungeonCrawl-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.rs10
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,