From e3579afc28dff1f3c774ef2404184042eb615ace Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Sat, 20 Apr 2019 18:01:39 -0700 Subject: [PATCH] loader: fix LoaderModuleInfo definition --- nx/include/switch/services/ldr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/include/switch/services/ldr.h b/nx/include/switch/services/ldr.h index 6d822af2..5ca7315e 100644 --- a/nx/include/switch/services/ldr.h +++ b/nx/include/switch/services/ldr.h @@ -23,9 +23,9 @@ typedef struct { } LoaderProgramInfo; typedef struct { + u8 build_id[0x20]; u64 base_address; u64 size; - u8 build_id[0x20]; } LoaderModuleInfo; Result ldrShellInitialize(void);