Separate Yoohoo.ogg into "Yoohoo" voice and kiss sound
Sound has been separated with mp3splt, so no quality loss
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())[..])
}