From 14a3f14b71fa7398c7de978cb335438a01aac536 Mon Sep 17 00:00:00 2001 From: lif Date: Sat, 23 Nov 2019 20:21:20 -0800 Subject: [PATCH] fix example post-rename and reorganize --- src/bin/example.rs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/bin/example.rs b/src/bin/example.rs index b61a32f..8ba7d00 100644 --- a/src/bin/example.rs +++ b/src/bin/example.rs @@ -1,11 +1,12 @@ extern crate crossbeam_channel; -extern crate rustro; +extern crate ferretro; extern crate sdl2; -use rustro::retro; -use rustro::retro::ffi::{GameGeometry, SystemInfo, SystemAvInfo}; -use rustro::retro::constants::{InputDeviceId, InputIndex, JoypadButton, AnalogAxis, DeviceType}; -use rustro::retro::wrapper::{LibretroWrapper, Variable2, ControllerDescription2, SubsystemInfo2, InputDescriptor2}; +use ferretro::retro; +use ferretro::retro::ffi::{GameGeometry, SystemInfo, SystemAvInfo}; +use ferretro::retro::constants::{InputIndex, JoypadButton, AnalogAxis, DeviceType}; +use ferretro::retro::wrapped_types::{ControllerDescription2, InputDescriptor2, InputDeviceId, SubsystemInfo2, Variable2}; +use ferretro::retro::wrapper::LibretroWrapper; use std::ffi::CStr; use std::io::Read;