remove <f32>

We can remove this since its already a f32 value
This commit is contained in:
Morph1984 2019-09-03 23:20:19 -04:00 committed by GitHub
parent 58783b8a46
commit ec95c73a12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -256,7 +256,7 @@ private:
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
rb.Push<f32>(1.0f);
rb.Push(1.0f);
}
void GetActiveAudioDeviceName(Kernel::HLERequestContext& ctx) {