Browse Source
explicitly represent 1 as a float (1.0f instead of 1)
pull/15/merge
Morph1984
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/core/hle/service/audio/audren_u.cpp
|
|
@ -256,7 +256,7 @@ private: |
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 3}; |
|
|
IPC::ResponseBuilder rb{ctx, 3}; |
|
|
rb.Push(RESULT_SUCCESS); |
|
|
rb.Push(RESULT_SUCCESS); |
|
|
rb.Push<f32>(1); |
|
|
|
|
|
|
|
|
rb.Push<f32>(1.0f); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void GetActiveAudioDeviceName(Kernel::HLERequestContext& ctx) { |
|
|
void GetActiveAudioDeviceName(Kernel::HLERequestContext& ctx) { |
|
|
|