aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
authorlat9nq <[email protected]>2023-05-05 03:48:28 -0400
committerlat9nq <[email protected]>2023-05-05 03:48:28 -0400
commit740c3498202e7ffe79e0cede54c802a1da0cbb4c (patch)
treeca6ce35a8e214a2dfc0fce26666b08e876d08f4c /src/yuzu_cmd
parent8f43b05d6b1be260f68907c581b8e3a91cf244d8 (diff)
downloadyuzu-mainline-740c3498202e7ffe79e0cede54c802a1da0cbb4c.tar.gz
yuzu-mainline-740c3498202e7ffe79e0cede54c802a1da0cbb4c.zip
yuzu-sdl,audio_core: Remove antiquated warning ignore
Issue was fixed a long time ago, both by SDL2 and in yuzu by including SDL2 as a system library.
Diffstat (limited to 'src/yuzu_cmd')
-rw-r--r--src/yuzu_cmd/config.cpp12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp
index fa347fb8c..a2f1d3d7e 100644
--- a/src/yuzu_cmd/config.cpp
+++ b/src/yuzu_cmd/config.cpp
@@ -4,18 +4,8 @@
#include <memory>
#include <optional>
#include <sstream>
-
-// Ignore -Wimplicit-fallthrough due to https://github.com/libsdl-org/SDL/issues/4307
-#ifdef __clang__
-#pragma clang diagnostic push
-#pragma clang diagnostic ignored "-Wimplicit-fallthrough"
-#endif
-#include <SDL.h>
-#ifdef __clang__
-#pragma clang diagnostic pop
-#endif
-
#include <INIReader.h>
+#include <SDL.h>
#include "common/fs/file.h"
#include "common/fs/fs.h"
#include "common/fs/path_util.h"