diff --git a/source/MenuUtils.cpp b/source/MenuUtils.cpp index 93382f3..7a9220f 100644 --- a/source/MenuUtils.cpp +++ b/source/MenuUtils.cpp @@ -110,7 +110,7 @@ void drawMenuScreen(const std::map &menu, uint32_t select int32_t handleMenuScreen(std::string &configPath, int32_t autobootOptionInput, const std::map &menu) { auto screenBuffer = DrawUtils::InitOSScreen(); if (!screenBuffer) { - OSFatal("Failed to alloc memory for screen"); + OSFatal("AutobootModule: Failed to alloc memory for screen"); } uint32_t tvBufferSize = OSScreenGetBufferSizeEx(SCREEN_TV); @@ -118,7 +118,7 @@ int32_t handleMenuScreen(std::string &configPath, int32_t autobootOptionInput, c DrawUtils::initBuffers(screenBuffer, tvBufferSize, (void *) ((uint32_t) screenBuffer + tvBufferSize), drcBufferSize); if (!DrawUtils::initFont()) { - OSFatal("Failed to init font"); + OSFatal("AutobootModule: Failed to init font"); } int32_t selectedIndex = autobootOptionInput > 0 ? autobootOptionInput : 0; @@ -225,7 +225,7 @@ int32_t handleMenuScreen(std::string &configPath, int32_t autobootOptionInput, c nn::act::SlotNo handleAccountSelectScreen(const std::vector> &data) { auto screenBuffer = DrawUtils::InitOSScreen(); if (!screenBuffer) { - OSFatal("Failed to alloc memory for screen"); + OSFatal("AutobootModule: Failed to alloc memory for screen"); } uint32_t tvBufferSize = OSScreenGetBufferSizeEx(SCREEN_TV); @@ -233,7 +233,7 @@ nn::act::SlotNo handleAccountSelectScreen(const std::vector