From 4bb0e5b1e32b26083b097cb09f695c572dad2ab4 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 30 Sep 2021 11:35:42 -0400 Subject: [PATCH] improve error mapping --- game/src/utilities/datastore.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/src/utilities/datastore.rs b/game/src/utilities/datastore.rs index 19a4147..004a951 100644 --- a/game/src/utilities/datastore.rs +++ b/game/src/utilities/datastore.rs @@ -1,7 +1,7 @@ use std::io::Write; use raylib::{texture::Texture2D, RaylibHandle, RaylibThread}; -use tempfile::{tempfile, NamedTempFile}; +use tempfile::{NamedTempFile}; /// Contains all game assets. /// @@ -38,7 +38,7 @@ pub fn load_texture_from_internal_data( )?; // Call through via FFI to re-load the file - let texture = raylib_handle.load_texture(thread, tmp_path.to_str().unwrap()).map_err(|e| ResourceLoadError::Generic(e))?; + let texture = raylib_handle.load_texture(thread, tmp_path.to_str().unwrap()).map_err(ResourceLoadError::Generic)?; // Close the file tmp_path.close()?;