mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-12 14:47:49 +00:00
explicitly represent 1 as a float (1.0f instead of 1)
This commit is contained in:
parent
cadaf5aadb
commit
d543e28fe8
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ private:
|
|||
|
||||
IPC::ResponseBuilder rb{ctx, 3};
|
||||
rb.Push(RESULT_SUCCESS);
|
||||
rb.Push<f32>(1);
|
||||
rb.Push<f32>(1.0f);
|
||||
}
|
||||
|
||||
void GetActiveAudioDeviceName(Kernel::HLERequestContext& ctx) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue