output/wasapi: cast to `const char *` for fmt 10 compatible
This commit is contained in:
parent
8df77122e5
commit
38f1237d49
1
NEWS
1
NEWS
|
@ -4,6 +4,7 @@ ver 0.23.14 (not yet released)
|
|||
- mad: fix calculation of LAME peak values
|
||||
* mixer
|
||||
- wasapi: fix problem setting volume
|
||||
* more libfmt 10 fixes
|
||||
|
||||
ver 0.23.13 (2023/05/22)
|
||||
* input
|
||||
|
|
|
@ -1026,7 +1026,7 @@ WasapiOutput::EnumerateDevices(IMMDeviceEnumerator &enumerator)
|
|||
continue;
|
||||
|
||||
FmtNotice(wasapi_output_domain,
|
||||
"Device \"{}\" \"{}\"", i, name);
|
||||
"Device \"{}\" \"{}\"", i, name.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue