Skip to content

Commit

Permalink
Prepare 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
XorTroll committed Feb 4, 2021
1 parent 770bb41 commit 45a7005
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

export EMUIIBO_MAJOR := 0
export EMUIIBO_MINOR := 6
export EMUIIBO_MICRO := 1
export EMUIIBO_MICRO := 2

.PHONY: all clean

Expand Down
2 changes: 1 addition & 1 deletion emuiibo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "emuiibo"
version = "0.6.1"
version = "0.6.2"
authors = ["XorTroll"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion emuiibo/src/emu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub enum VirtualAmiiboStatus {
Disconnected
}

pub const CURRENT_VERSION: Version = Version::from(0, 6, 1, false);
pub const CURRENT_VERSION: Version = Version::from(0, 6, 2, false);

static mut G_EMULATION_STATUS: sync::Locked<EmulationStatus> = sync::Locked::new(false, EmulationStatus::Off);
static mut G_ACTIVE_VIRTUAL_AMIIBO_STATUS: sync::Locked<VirtualAmiiboStatus> = sync::Locked::new(false, VirtualAmiiboStatus::Invalid);
Expand Down
2 changes: 1 addition & 1 deletion emuiibo/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub fn main() -> Result<()> {
miiext::initialize()?;
miiext::export_miis()?;

let mut manager = Manager::new();
let mut manager = Manager::new()?;
manager.register_mitm_service_server::<ipc::nfp::UserManager>()?;
manager.register_service_server::<ipc::emu::EmulationService>()?;
manager.loop_process()?;
Expand Down
2 changes: 1 addition & 1 deletion libtesla

0 comments on commit 45a7005

Please sign in to comment.