summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/pl_u.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-12 03:06:40 +0200
committerLioncash <mathew1800@gmail.com>2018-09-12 03:24:19 +0200
commitc061e27155a59d4563003e0f4f7364864f9b51d4 (patch)
treec9e0748edd0e9d1487f5a8e32b2490078212dde1 /src/core/hle/service/ns/pl_u.h
parentMerge pull request #1291 from lioncash/default (diff)
downloadyuzu-c061e27155a59d4563003e0f4f7364864f9b51d4.tar
yuzu-c061e27155a59d4563003e0f4f7364864f9b51d4.tar.gz
yuzu-c061e27155a59d4563003e0f4f7364864f9b51d4.tar.bz2
yuzu-c061e27155a59d4563003e0f4f7364864f9b51d4.tar.lz
yuzu-c061e27155a59d4563003e0f4f7364864f9b51d4.tar.xz
yuzu-c061e27155a59d4563003e0f4f7364864f9b51d4.tar.zst
yuzu-c061e27155a59d4563003e0f4f7364864f9b51d4.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ns/pl_u.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/core/hle/service/ns/pl_u.h b/src/core/hle/service/ns/pl_u.h
index 296c3db05..253f26a2a 100644
--- a/src/core/hle/service/ns/pl_u.h
+++ b/src/core/hle/service/ns/pl_u.h
@@ -5,7 +5,6 @@
#pragma once
#include <memory>
-#include "core/hle/kernel/shared_memory.h"
#include "core/hle/service/service.h"
namespace Service::NS {
@@ -23,11 +22,8 @@ private:
void GetSharedMemoryNativeHandle(Kernel::HLERequestContext& ctx);
void GetSharedFontInOrderOfPriority(Kernel::HLERequestContext& ctx);
- /// Handle to shared memory region designated for a shared font
- Kernel::SharedPtr<Kernel::SharedMemory> shared_font_mem;
-
- /// Backing memory for the shared font data
- std::shared_ptr<std::vector<u8>> shared_font;
+ struct Impl;
+ std::unique_ptr<Impl> impl;
};
} // namespace Service::NS