summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/citra_qt/main.cpp4
-rw-r--r--src/common/string_util.cpp5
-rw-r--r--src/core/gdbstub/gdbstub.cpp2
3 files changed, 8 insertions, 3 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index b904fec16..99cc3f096 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -48,6 +48,10 @@
48#include "qhexedit.h" 48#include "qhexedit.h"
49#include "video_core/video_core.h" 49#include "video_core/video_core.h"
50 50
51#ifdef QT_STATICPLUGIN
52Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin);
53#endif
54
51GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) { 55GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) {
52 Pica::g_debug_context = Pica::DebugContext::Construct(); 56 Pica::g_debug_context = Pica::DebugContext::Construct();
53 57
diff --git a/src/common/string_util.cpp b/src/common/string_util.cpp
index 596ae01bf..df1008180 100644
--- a/src/common/string_util.cpp
+++ b/src/common/string_util.cpp
@@ -11,7 +11,8 @@
11#include "common/common_paths.h" 11#include "common/common_paths.h"
12#include "common/logging/log.h" 12#include "common/logging/log.h"
13#include "common/string_util.h" 13#include "common/string_util.h"
14#ifdef _MSC_VER 14
15#ifdef _WIN32
15#include <codecvt> 16#include <codecvt>
16#include <Windows.h> 17#include <Windows.h>
17#include "common/common_funcs.h" 18#include "common/common_funcs.h"
@@ -270,7 +271,7 @@ std::string ReplaceAll(std::string result, const std::string& src, const std::st
270 return result; 271 return result;
271} 272}
272 273
273#ifdef _MSC_VER 274#ifdef _WIN32
274 275
275std::string UTF16ToUTF8(const std::u16string& input) { 276std::string UTF16ToUTF8(const std::u16string& input) {
276#if _MSC_VER >= 1900 277#if _MSC_VER >= 1900
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp
index ceb993ea1..aea43e92b 100644
--- a/src/core/gdbstub/gdbstub.cpp
+++ b/src/core/gdbstub/gdbstub.cpp
@@ -14,7 +14,7 @@
14#include <numeric> 14#include <numeric>
15#include <fcntl.h> 15#include <fcntl.h>
16 16
17#ifdef _MSC_VER 17#ifdef _WIN32
18#include <WinSock2.h> 18#include <WinSock2.h>
19#include <common/x64/abi.h> 19#include <common/x64/abi.h>
20#include <io.h> 20#include <io.h>