summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/shared_memory.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-08-19 03:42:44 +0200
committerbunnei <bunneidev@gmail.com>2014-08-19 03:42:44 +0200
commite9c5c563a500ac19ecb2f580ce065a9010dedac9 (patch)
tree25155672077a81a5f1b66e738826a7b850c55e82 /src/core/hle/kernel/shared_memory.cpp
parentMerge pull request #45 from bunnei/master (diff)
parentCore: Alter the kernel string functions to use std::string instead of const char*. (diff)
downloadyuzu-e9c5c563a500ac19ecb2f580ce065a9010dedac9.tar
yuzu-e9c5c563a500ac19ecb2f580ce065a9010dedac9.tar.gz
yuzu-e9c5c563a500ac19ecb2f580ce065a9010dedac9.tar.bz2
yuzu-e9c5c563a500ac19ecb2f580ce065a9010dedac9.tar.lz
yuzu-e9c5c563a500ac19ecb2f580ce065a9010dedac9.tar.xz
yuzu-e9c5c563a500ac19ecb2f580ce065a9010dedac9.tar.zst
yuzu-e9c5c563a500ac19ecb2f580ce065a9010dedac9.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/shared_memory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/shared_memory.cpp b/src/core/hle/kernel/shared_memory.cpp
index 52823048f..2a6a483a1 100644
--- a/src/core/hle/kernel/shared_memory.cpp
+++ b/src/core/hle/kernel/shared_memory.cpp
@@ -11,7 +11,7 @@ namespace Kernel {
class SharedMemory : public Object {
public:
- const char* GetTypeName() const { return "SharedMemory"; }
+ std::string GetTypeName() const { return "SharedMemory"; }
static Kernel::HandleType GetStaticHandleType() { return Kernel::HandleType::SharedMemory; }
Kernel::HandleType GetHandleType() const { return Kernel::HandleType::SharedMemory; }