diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-16 12:10:12 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-16 12:10:12 +0200 |
commit | 5cad8fad7c8e8b4358c9b0290c228ac9fac164f5 (patch) | |
tree | f70efa6135f2ae2bca1b228b85fdea6af6cd2812 /light-client/tools | |
parent | 92ebc438268851cd9abb7af7d4938c10bd6cf80a (diff) | |
download | hurrycurry-5cad8fad7c8e8b4358c9b0290c228ac9fac164f5.tar hurrycurry-5cad8fad7c8e8b4358c9b0290c228ac9fac164f5.tar.bz2 hurrycurry-5cad8fad7c8e8b4358c9b0290c228ac9fac164f5.tar.zst |
render players
Diffstat (limited to 'light-client/tools')
-rw-r--r-- | light-client/tools/src/bin/tex_pack.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/light-client/tools/src/bin/tex_pack.rs b/light-client/tools/src/bin/tex_pack.rs index e6d73ab3..1258b5bf 100644 --- a/light-client/tools/src/bin/tex_pack.rs +++ b/light-client/tools/src/bin/tex_pack.rs @@ -60,7 +60,7 @@ fn main() { cursor_x = 0; } if cursor_y + height > atlas_size { - panic!("texture too big or atlas full") + panic!("texture too big or atlas full"); } row_height = row_height.max(atlas_size); let texcoord = [cursor_x, cursor_y, width, height]; |