diff options
Diffstat (limited to 'pixel-client/tools/src/bin')
-rw-r--r-- | pixel-client/tools/src/bin/bunnymark.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pixel-client/tools/src/bin/bunnymark.rs b/pixel-client/tools/src/bin/bunnymark.rs index b9e4b0ae..e0b669da 100644 --- a/pixel-client/tools/src/bin/bunnymark.rs +++ b/pixel-client/tools/src/bin/bunnymark.rs @@ -47,7 +47,9 @@ pub fn main() { .map_err(|e| e.to_string()) .unwrap(); let texture_creator = canvas.texture_creator(); - let texture = texture_creator.load_texture("client/icon.png").unwrap(); + let texture = texture_creator + .load_texture("client/icons/main.png") + .unwrap(); let mut bunnies = vec![((0, 0), (0, 0)); amount]; |