mirror of
https://github.com/switchbrew/nx-hbloader.git
synced 2025-06-21 05:22:40 +02:00
Fix #37: regressions introduced by missed HBABI entry index updates
This commit is contained in:
parent
b1406d9eaa
commit
f6c46269ef
2
Makefile
2
Makefile
@ -43,7 +43,7 @@ SOURCES := source
|
|||||||
DATA := data
|
DATA := data
|
||||||
INCLUDES := include
|
INCLUDES := include
|
||||||
#ROMFS := romfs
|
#ROMFS := romfs
|
||||||
APP_VERSION := 2.4.2
|
APP_VERSION := 2.4.3
|
||||||
|
|
||||||
ifeq ($(RELEASE),)
|
ifeq ($(RELEASE),)
|
||||||
APP_VERSION := $(APP_VERSION)-$(shell git describe --dirty --always)
|
APP_VERSION := $(APP_VERSION)-$(shell git describe --dirty --always)
|
||||||
|
@ -501,11 +501,11 @@ void loadNro(void)
|
|||||||
// LastLoadResult
|
// LastLoadResult
|
||||||
entries[6].Value[0] = g_lastRet;
|
entries[6].Value[0] = g_lastRet;
|
||||||
// RandomSeed
|
// RandomSeed
|
||||||
entries[8].Value[0] = randomGet64();
|
entries[9].Value[0] = randomGet64();
|
||||||
entries[8].Value[1] = randomGet64();
|
entries[9].Value[1] = randomGet64();
|
||||||
// HosVersion
|
// HosVersion
|
||||||
entries[10].Value[0] = hosversionGet();
|
entries[11].Value[0] = hosversionGet();
|
||||||
entries[10].Value[1] = hosversionIsAtmosphere() ? 0x41544d4f53504852UL : 0; // 'ATMOSPHR'
|
entries[11].Value[1] = hosversionIsAtmosphere() ? 0x41544d4f53504852UL : 0; // 'ATMOSPHR'
|
||||||
|
|
||||||
g_nroAddr = (u64)map_addr;
|
g_nroAddr = (u64)map_addr;
|
||||||
g_nroSize = nro_size;
|
g_nroSize = nro_size;
|
||||||
|
Loading…
Reference in New Issue
Block a user