From acc1578cdd0d8de22f57a0df907dbe7d0e01f28d Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Tue, 13 Apr 2021 13:38:54 +0100 Subject: [PATCH] false_avail: Remove `__vita__` workaround No longer necessary as of https://github.com/diasurgical/devilutionX/pull/1484/commits/dae4cc8c50a41f173f1432b5f81a0023fa23d45b The default minimum priority log level in release builds is INFO --- SourceX/miniwin/misc_msg.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/SourceX/miniwin/misc_msg.cpp b/SourceX/miniwin/misc_msg.cpp index 277fefa4b..c6b852ada 100644 --- a/SourceX/miniwin/misc_msg.cpp +++ b/SourceX/miniwin/misc_msg.cpp @@ -262,10 +262,7 @@ WPARAM keystate_for_mouse(WPARAM ret) bool false_avail(const char *name, int value) { -#ifndef __vita__ - // Logging on Vita is slow due slow IO, so disable spamming unhandled events to log SDL_LogDebug(SDL_LOG_CATEGORY_APPLICATION, "Unhandled SDL event: %s %d", name, value); -#endif return true; }