diff options
Diffstat (limited to 'light-client/tools/src')
-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]; |