diff options
Diffstat (limited to 'src/core/hle/service/glue')
| -rw-r--r-- | src/core/hle/service/glue/glue_manager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/glue/glue_manager.cpp b/src/core/hle/service/glue/glue_manager.cpp index aa9d48c0c..48e133b48 100644 --- a/src/core/hle/service/glue/glue_manager.cpp +++ b/src/core/hle/service/glue/glue_manager.cpp | |||
| @@ -26,7 +26,7 @@ ResultVal<ApplicationLaunchProperty> ARPManager::GetLaunchProperty(u64 title_id) | |||
| 26 | return ERR_NOT_REGISTERED; | 26 | return ERR_NOT_REGISTERED; |
| 27 | } | 27 | } |
| 28 | 28 | ||
| 29 | return MakeResult<ApplicationLaunchProperty>(iter->second.launch); | 29 | return iter->second.launch; |
| 30 | } | 30 | } |
| 31 | 31 | ||
| 32 | ResultVal<std::vector<u8>> ARPManager::GetControlProperty(u64 title_id) const { | 32 | ResultVal<std::vector<u8>> ARPManager::GetControlProperty(u64 title_id) const { |
| @@ -39,7 +39,7 @@ ResultVal<std::vector<u8>> ARPManager::GetControlProperty(u64 title_id) const { | |||
| 39 | return ERR_NOT_REGISTERED; | 39 | return ERR_NOT_REGISTERED; |
| 40 | } | 40 | } |
| 41 | 41 | ||
| 42 | return MakeResult<std::vector<u8>>(iter->second.control); | 42 | return iter->second.control; |
| 43 | } | 43 | } |
| 44 | 44 | ||
| 45 | ResultCode ARPManager::Register(u64 title_id, ApplicationLaunchProperty launch, | 45 | ResultCode ARPManager::Register(u64 title_id, ApplicationLaunchProperty launch, |