diff options
| author | metamuffin <metamuffin@disroot.org> | 2024-11-22 00:01:36 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2024-11-22 00:01:36 +0100 |
| commit | a73f0b1a035279eaba5ee90adfadf0dbd5e2fd17 (patch) | |
| tree | 59f3ae74ae402cda5a478dc1e2e801e95f793651 | |
| parent | 7645321c171e10a6afc66f4e7cdf46fe35c74457 (diff) | |
| download | hurrycurry-a73f0b1a035279eaba5ee90adfadf0dbd5e2fd17.tar hurrycurry-a73f0b1a035279eaba5ee90adfadf0dbd5e2fd17.tar.bz2 hurrycurry-a73f0b1a035279eaba5ee90adfadf0dbd5e2fd17.tar.zst | |
update bunnymark image path
| -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]; |