Skip to content

Commit

Permalink
Actually get ready for release
Browse files Browse the repository at this point in the history
  • Loading branch information
XorTroll committed Aug 20, 2023
1 parent 94234f8 commit f9c3013
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ sysmodule-dev:
overlay:
@$(MAKE) -C overlay/

dist:
dist: sysmodule overlay
@rm -rf $(CURDIR)/SdOut
@mkdir -p $(CURDIR)/SdOut/atmosphere/contents/$(PROGRAM_ID)/flags
@touch $(CURDIR)/SdOut/atmosphere/contents/$(PROGRAM_ID)/flags/boot2.flag
Expand Down
2 changes: 1 addition & 1 deletion emuiibo/src/emu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub const IS_DEV_BUILD: bool = true;
#[cfg(not(debug_assertions))]
pub const IS_DEV_BUILD: bool = false;

pub const CURRENT_VERSION: Version = Version::from(1, 0, 0, IS_DEV_BUILD);
pub const CURRENT_VERSION: Version = Version::from(1, 1, 0, IS_DEV_BUILD);

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
1 change: 1 addition & 0 deletions overlay/source/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -782,6 +782,7 @@ class EmuiiboOverlay : public tsl::Overlay {
g_InitializationOk = tr::Load() && emu::IsAvailable() && R_SUCCEEDED(emu::Initialize()) && R_SUCCEEDED(pmdmntInitialize()) && R_SUCCEEDED(nsInitialize());
if(g_InitializationOk) {
g_Version = emu::GetVersion();
// TODO: distinguish between different possible issues?
g_InitializationOk &= g_Version.EqualsExceptBuild(ExpectedVersion);
}

Expand Down

0 comments on commit f9c3013

Please sign in to comment.