mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:08:39 +00:00
486f3163f3
* Fix hbl 2.3.1 and hbmenu 3.3.0 * log class: Add ServicePtm * fix build issue * do not cast titleId to byte * Address Ac_K's comment
26 lines
725 B
C#
26 lines
725 B
C#
using Ryujinx.Common.Logging;
|
|
using Ryujinx.HLE.HOS.Services.Ptm.Ts.Types;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ptm.Ts
|
|
{
|
|
[Service("ts")]
|
|
class IMeasurementServer : IpcService
|
|
{
|
|
private const uint DefaultTemperature = 42000u;
|
|
|
|
public IMeasurementServer(ServiceCtx context) { }
|
|
|
|
[Command(3)]
|
|
// GetTemperatureMilliC(Location location) -> u32
|
|
public ResultCode GetTemperatureMilliC(ServiceCtx context)
|
|
{
|
|
Location location = (Location)context.RequestData.ReadByte();
|
|
|
|
Logger.PrintStub(LogClass.ServicePtm, new { location });
|
|
|
|
context.ResponseData.Write(DefaultTemperature);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |