Browse Source
Merge pull request #10162 from lat9nq/sdl-remove-old
yuzu-sdl,audio_core: Remove antiquated warning ignore
pull/15/merge
liamwhite
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
21 deletions
-
src/audio_core/sink/sdl2_sink.cpp
-
src/yuzu_cmd/config.cpp
|
|
|
@ -3,6 +3,7 @@ |
|
|
|
|
|
|
|
#include <span>
|
|
|
|
#include <vector>
|
|
|
|
#include <SDL.h>
|
|
|
|
|
|
|
|
#include "audio_core/common/common.h"
|
|
|
|
#include "audio_core/sink/sdl2_sink.h"
|
|
|
|
@ -10,16 +11,6 @@ |
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "core/core.h"
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
|
|
|
namespace AudioCore::Sink { |
|
|
|
/**
|
|
|
|
* SDL sink stream, responsible for sinking samples to hardware. |
|
|
|
|
|
|
|
@ -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"
|
|
|
|
|