ams: various fixes to support booting debug configuration

This commit is contained in:
Michael Scire
2025-04-08 13:43:29 -07:00
parent 85fd13f724
commit 6125f40bdb
7 changed files with 7 additions and 7 deletions

View File

@@ -19,7 +19,7 @@
namespace ams {
constexpr inline size_t DefaultAlignment = alignof(max_align_t);
constexpr inline size_t DefaultAlignment = /*alignof(max_align_t)*/ 0x8;
using AllocateFunction = void *(*)(size_t);
using AllocateFunctionWithUserData = void *(*)(size_t, void *);