rust/physfs-rs/src/physfs/util.rs
author Wuzzy <Wuzzy2@mail.ru>
Thu, 10 Jan 2019 18:05:48 +0100
changeset 14544 c36d67d6366d
parent 14440 a1613788130d
permissions -rw-r--r--
Update grenade training to support bounciness in Touch

use std::io::{ Error, ErrorKind };
use super::PhysFSContext;

pub fn physfs_error_as_io_error() -> Error {
    Error::new(ErrorKind::Other,
               &format!("PhysicsFS Error: `{}`", PhysFSContext::get_last_error())[..])
}