diff options
Diffstat (limited to 'src/core/hle/kernel/hle_ipc.h')
-rw-r--r-- | src/core/hle/kernel/hle_ipc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/hle_ipc.h b/src/core/hle/kernel/hle_ipc.h index 8c26285e5..42941d151 100644 --- a/src/core/hle/kernel/hle_ipc.h +++ b/src/core/hle/kernel/hle_ipc.h @@ -154,13 +154,13 @@ public: template<typename T> SharedPtr<T> GetCopyObject(size_t index) { ASSERT(index < copy_objects.size()); - return DynamicObjectCast(copy_objects[index]); + return DynamicObjectCast<T>(copy_objects[index]); } template<typename T> SharedPtr<T> GetMoveObject(size_t index) { ASSERT(index < move_objects.size()); - return DynamicObjectCast(move_objects[index]); + return DynamicObjectCast<T>(move_objects[index]); } void AddMoveObject(SharedPtr<Object> object) { |