mirror of
https://github.com/XorTroll/emuiibo.git
synced 2024-11-26 19:10:30 +00:00
Actually get ready for release
This commit is contained in:
parent
94234f8474
commit
f9c3013cdf
2
Makefile
2
Makefile
@ -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
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user