summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fs.h
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/service/fs.h
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 'src/core/hle/service/fs.h')
-rw-r--r--src/core/hle/service/fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fs.h b/src/core/hle/service/fs.h
index fabf5ac7e..36f3697d3 100644
--- a/src/core/hle/service/fs.h
+++ b/src/core/hle/service/fs.h
@@ -23,7 +23,7 @@ public:
* Gets the string port name used by CTROS for the service
* @return Port name of service
*/
- const char *GetPortName() const {
+ std::string GetPortName() const {
return "fs:USER";
}
};