improve error mapping
This commit is contained in:
parent
fd7a08dbee
commit
4bb0e5b1e3
@ -1,7 +1,7 @@
|
|||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
|
|
||||||
use raylib::{texture::Texture2D, RaylibHandle, RaylibThread};
|
use raylib::{texture::Texture2D, RaylibHandle, RaylibThread};
|
||||||
use tempfile::{tempfile, NamedTempFile};
|
use tempfile::{NamedTempFile};
|
||||||
|
|
||||||
/// Contains all game assets.
|
/// Contains all game assets.
|
||||||
///
|
///
|
||||||
@ -38,7 +38,7 @@ pub fn load_texture_from_internal_data(
|
|||||||
)?;
|
)?;
|
||||||
|
|
||||||
// Call through via FFI to re-load the file
|
// 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
|
// Close the file
|
||||||
tmp_path.close()?;
|
tmp_path.close()?;
|
||||||
|
Reference in New Issue
Block a user