diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-15 20:49:45 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-15 20:49:45 +0200 |
commit | 53bd35b77a1240bc0d571d1e7cff3591ca6fde9a (patch) | |
tree | 49646c59e3786436655b809c09d113e6124eaa63 /light-client/tools/src/bin/tex_export.rs | |
parent | c82a2bf203f3495865fd40527fa41a9e32f7aa9c (diff) | |
download | hurrycurry-53bd35b77a1240bc0d571d1e7cff3591ca6fde9a.tar hurrycurry-53bd35b77a1240bc0d571d1e7cff3591ca6fde9a.tar.bz2 hurrycurry-53bd35b77a1240bc0d571d1e7cff3591ca6fde9a.tar.zst |
texture compose system
Diffstat (limited to 'light-client/tools/src/bin/tex_export.rs')
-rw-r--r-- | light-client/tools/src/bin/tex_export.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/light-client/tools/src/bin/tex_export.rs b/light-client/tools/src/bin/tex_export.rs index d325d912..248990e6 100644 --- a/light-client/tools/src/bin/tex_export.rs +++ b/light-client/tools/src/bin/tex_export.rs @@ -36,7 +36,7 @@ fn main() { output: out_path, } = Args::parse(); - let palette = include_str!("../../../textures/palette.csv") + let palette = include_str!("../../../assets/palette.csv") .split('\n') .filter(|l| !l.is_empty()) .map(|s| { |