Compare commits

..

2 Commits

Author SHA1 Message Date
Michael Scire
8b88351cb4 mitm: fix errant include on non-hos 2023-06-06 19:32:06 -07:00
Michael Scire
63ea152349 fatal: take good idea from shrek 2023-05-19 11:47:38 -07:00
2 changed files with 3 additions and 1 deletions

View File

@ -14,7 +14,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stratosphere.hpp>
#if defined(ATMOSPHERE_OS_HORIZON)
#include "mitm_pm.os.horizon.h"
#endif
namespace ams::mitm::pm {

View File

@ -258,7 +258,7 @@ namespace ams::fatal::srv {
/* Draw a background. */
for (size_t i = 0; i < FrameBufferRequiredSizeBytes / sizeof(*tiled_buf); i++) {
tiled_buf[i] = 0x39C9;
tiled_buf[i] = AtmosphereLogoData[0];
}
/* Draw the atmosphere logo in the upper right corner. */