diff options
| author | 2020-02-03 09:10:59 -0500 | |
|---|---|---|
| committer | 2020-02-03 09:13:40 -0500 | |
| commit | 36524465a6fb9940ab5297cef21cd2aa6de8e239 (patch) | |
| tree | b924ccc0b9352d0f2eb79737af8cffdeba851353 /src/input_common/udp/udp.cpp | |
| parent | input_common/udp: Add missing header guard (diff) | |
| download | yuzu-36524465a6fb9940ab5297cef21cd2aa6de8e239.tar.gz yuzu-36524465a6fb9940ab5297cef21cd2aa6de8e239.tar.xz yuzu-36524465a6fb9940ab5297cef21cd2aa6de8e239.zip | |
input_common/udp: Remove unnecessary inclusions
Diffstat (limited to 'src/input_common/udp/udp.cpp')
| -rw-r--r-- | src/input_common/udp/udp.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/input_common/udp/udp.cpp b/src/input_common/udp/udp.cpp index a80f38614..49a747327 100644 --- a/src/input_common/udp/udp.cpp +++ b/src/input_common/udp/udp.cpp | |||
| @@ -2,7 +2,9 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "common/logging/log.h" | 5 | #include <mutex> |
| 6 | #include <tuple> | ||
| 7 | |||
| 6 | #include "common/param_package.h" | 8 | #include "common/param_package.h" |
| 7 | #include "core/frontend/input.h" | 9 | #include "core/frontend/input.h" |
| 8 | #include "core/settings.h" | 10 | #include "core/settings.h" |