summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2023-07-17 21:36:03 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2023-07-17 21:36:03 +0200
commit5bbc3aef1368cc1fcc59304013f0999b0827115b (patch)
treea78a09ae6dfbd779536059f8806077cb2a710b76 /src/core/hle
parentMerge pull request #10934 from abouvier/cmake-vma (diff)
downloadyuzu-5bbc3aef1368cc1fcc59304013f0999b0827115b.tar
yuzu-5bbc3aef1368cc1fcc59304013f0999b0827115b.tar.gz
yuzu-5bbc3aef1368cc1fcc59304013f0999b0827115b.tar.bz2
yuzu-5bbc3aef1368cc1fcc59304013f0999b0827115b.tar.lz
yuzu-5bbc3aef1368cc1fcc59304013f0999b0827115b.tar.xz
yuzu-5bbc3aef1368cc1fcc59304013f0999b0827115b.tar.zst
yuzu-5bbc3aef1368cc1fcc59304013f0999b0827115b.zip
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/nifm/nifm.cpp1
-rw-r--r--src/core/hle/service/nifm/nifm.h7
2 files changed, 5 insertions, 3 deletions
diff --git a/src/core/hle/service/nifm/nifm.cpp b/src/core/hle/service/nifm/nifm.cpp
index 91d42853e..21b06d10b 100644
--- a/src/core/hle/service/nifm/nifm.cpp
+++ b/src/core/hle/service/nifm/nifm.cpp
@@ -7,6 +7,7 @@
#include "core/hle/service/kernel_helpers.h"
#include "core/hle/service/nifm/nifm.h"
#include "core/hle/service/server_manager.h"
+#include "network/network.h"
namespace {
diff --git a/src/core/hle/service/nifm/nifm.h b/src/core/hle/service/nifm/nifm.h
index 9b20e6823..ae99c4695 100644
--- a/src/core/hle/service/nifm/nifm.h
+++ b/src/core/hle/service/nifm/nifm.h
@@ -4,14 +4,15 @@
#pragma once
#include "core/hle/service/service.h"
-#include "network/network.h"
-#include "network/room.h"
-#include "network/room_member.h"
namespace Core {
class System;
}
+namespace Network {
+class RoomNetwork;
+}
+
namespace Service::NIFM {
void LoopProcess(Core::System& system);