Apply clippy suggestions

This commit is contained in:
timvisee
2018-09-22 18:36:48 +02:00
parent bd6b48cd3b
commit 74d3f16bc8
7 changed files with 18 additions and 18 deletions

View File

@@ -46,7 +46,7 @@ fn start<'a>(arg_handler: &ArgHandler<'a>) {
);
// Load the image manager
let mut image_manager = ImageManager::load(arg_handler.image_paths(), &size);
let mut image_manager = ImageManager::load(&arg_handler.image_paths(), size);
// Start the work in the image manager, to walk through the frames
image_manager.work(&mut canvas, arg_handler.fps());