diff options
| author | 2021-05-01 12:27:13 -0700 | |
|---|---|---|
| committer | 2021-05-05 16:40:53 -0700 | |
| commit | 9bae3992e613ef93df45d025021f87aa75e486dc (patch) | |
| tree | 8fe81eaff80001dd3c3eb78cfefa8915bb2ba1dd /src | |
| parent | fixup! hle: kernel: Add initial impl. of slab setup. (diff) | |
| download | yuzu-9bae3992e613ef93df45d025021f87aa75e486dc.tar.gz yuzu-9bae3992e613ef93df45d025021f87aa75e486dc.tar.xz yuzu-9bae3992e613ef93df45d025021f87aa75e486dc.zip | |
fixup! hle: kernel: Add initial impl. of KAutoObject.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/k_auto_object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_auto_object.h b/src/core/hle/kernel/k_auto_object.h index e99986c68..452325f73 100644 --- a/src/core/hle/kernel/k_auto_object.h +++ b/src/core/hle/kernel/k_auto_object.h | |||
| @@ -41,7 +41,7 @@ public: | |||
| 41 | virtual TypeObj GetTypeObj() const { \ | 41 | virtual TypeObj GetTypeObj() const { \ |
| 42 | return GetStaticTypeObj(); \ | 42 | return GetStaticTypeObj(); \ |
| 43 | } \ | 43 | } \ |
| 44 | virtual const char* GetTypeName() { \ | 44 | virtual const char* GetTypeName() const { \ |
| 45 | return GetStaticTypeName(); \ | 45 | return GetStaticTypeName(); \ |
| 46 | } \ | 46 | } \ |
| 47 | \ | 47 | \ |