From a38927ec048b04b276a6cc84b9e938408775c96c Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 5 Mar 2019 07:52:42 -0800 Subject: [PATCH] fatal: remove debugging log that slipped through --- stratosphere/fatal/source/fatal_task_screen.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/stratosphere/fatal/source/fatal_task_screen.cpp b/stratosphere/fatal/source/fatal_task_screen.cpp index c7b27b45b..a67cf71ce 100644 --- a/stratosphere/fatal/source/fatal_task_screen.cpp +++ b/stratosphere/fatal/source/fatal_task_screen.cpp @@ -112,15 +112,6 @@ Result ShowFatalTask::PrepareScreenForDrawing() { return rc; } - { - u64 layer_z = 0xCAFEBABE; - if (R_SUCCEEDED((rc = viGetDisplayMaximumZ(&this->display, &layer_z)))) { - FILE *f_dumb = fopen("layerz.txt", "w"); - fprintf(f_dumb, "%016lx\n", layer_z); - fclose(f_dumb); - } - } - /* Reset the display magnification to its default value. */ u32 display_width, display_height; if (R_FAILED((rc = viGetDisplayLogicalResolution(&this->display, &display_width, &display_height)))) {