mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-22 00:06:59 +02:00
Remove const qualifiers from decoding backend vtable arrays.
This commit is contained in:
@@ -54,7 +54,7 @@ int main(int argc, char** argv)
|
||||
Add your custom backend vtables here. The order in the array defines the order of priority. The
|
||||
vtables will be passed in via the decoder config.
|
||||
*/
|
||||
const ma_decoding_backend_vtable* pCustomBackendVTables[] =
|
||||
ma_decoding_backend_vtable* pCustomBackendVTables[] =
|
||||
{
|
||||
ma_decoding_backend_libvorbis,
|
||||
ma_decoding_backend_libopus
|
||||
|
||||
@@ -29,7 +29,7 @@ int main(int argc, char** argv)
|
||||
Add your custom backend vtables here. The order in the array defines the order of priority. The
|
||||
vtables will be passed in to the resource manager config.
|
||||
*/
|
||||
const ma_decoding_backend_vtable* pCustomBackendVTables[] =
|
||||
ma_decoding_backend_vtable* pCustomBackendVTables[] =
|
||||
{
|
||||
ma_decoding_backend_libvorbis,
|
||||
ma_decoding_backend_libopus
|
||||
|
||||
Reference in New Issue
Block a user