summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/service.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/service.h b/src/core/hle/service/service.h
index 3fd855dee..3cad6c642 100644
--- a/src/core/hle/service/service.h
+++ b/src/core/hle/service/service.h
@@ -40,7 +40,7 @@ public:
* Gets the string name used by CTROS for a service
* @return String name of service
*/
- virtual std::string GetName() {
+ virtual std::string GetName() const {
return "[UNKNOWN SERVICE NAME]";
}
@@ -48,7 +48,7 @@ public:
* Gets the string name used by CTROS for a service
* @return Port name of service
*/
- virtual std::string GetPortName() {
+ virtual std::string GetPortName() const {
return "[UNKNOWN SERVICE PORT]";
}