diff options
| author | 2018-03-19 17:07:08 +0100 | |
|---|---|---|
| committer | 2018-03-19 17:07:08 +0100 | |
| commit | ef875d6a356fef22d52ec2cdf2a326297740ff66 (patch) | |
| tree | 8565762859d7be0329fb5991819b8381c690527d /src/core/hle/service/service.cpp | |
| parent | Merge pull request #251 from Subv/tic_tsc (diff) | |
| download | yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.gz yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.xz yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.zip | |
Clean Warnings (?)
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index a1ca8a033..d4b08aadf 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -149,7 +149,7 @@ ResultCode ServiceFrameworkBase::HandleSyncRequest(Kernel::HLERequestContext& co | |||
| 149 | break; | 149 | break; |
| 150 | } | 150 | } |
| 151 | default: | 151 | default: |
| 152 | UNIMPLEMENTED_MSG("command_type=%d", context.GetCommandType()); | 152 | UNIMPLEMENTED_MSG("command_type=%d", static_cast<int>(context.GetCommandType())); |
| 153 | } | 153 | } |
| 154 | 154 | ||
| 155 | context.WriteToOutgoingCommandBuffer(*Kernel::GetCurrentThread()); | 155 | context.WriteToOutgoingCommandBuffer(*Kernel::GetCurrentThread()); |