mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-02-21 12:51:57 +01:00
audacious: fix c++ inane casts
This commit is contained in:
parent
4875309502
commit
f1889a9368
@ -6,7 +6,7 @@ inputplugindir = $(plugindir)/$(INPUT_PLUGIN_DIR)
|
|||||||
inputplugin_LTLIBRARIES = libvgmstream.la
|
inputplugin_LTLIBRARIES = libvgmstream.la
|
||||||
|
|
||||||
AM_MAKEFLAGS=-f Makefile.autotools
|
AM_MAKEFLAGS=-f Makefile.autotools
|
||||||
AM_CXXFLAGS = -DVGMSTREAM_VERSION_AUTO -DVGM_LOG_OUTPUT -Wall -std=c++11 -fpermissive -I$(top_builddir) -I$(top_srcdir) -I$(top_srcdir)/ext_includes/ $(AUDACIOUS_CFLAGS) $(GTK_CFLAGS)
|
AM_CXXFLAGS = -DVGMSTREAM_VERSION_AUTO -DVGM_LOG_OUTPUT -Wall -std=c++11 -I$(top_builddir) -I$(top_srcdir) -I$(top_srcdir)/ext_includes/ $(AUDACIOUS_CFLAGS) $(GTK_CFLAGS)
|
||||||
AM_LIBS =
|
AM_LIBS =
|
||||||
|
|
||||||
# sources/headers are updated automatically by ./bootstrap script (not all headers are needed though)
|
# sources/headers are updated automatically by ./bootstrap script (not all headers are needed though)
|
||||||
|
@ -148,7 +148,7 @@ bool VgmstreamPlugin::init() {
|
|||||||
|
|
||||||
vgmstream_settings_load();
|
vgmstream_settings_load();
|
||||||
|
|
||||||
vgmstream_set_log_callback(VGM_LOG_LEVEL_ALL, &vgmstream_log);
|
vgmstream_set_log_callback(VGM_LOG_LEVEL_ALL, (void*)&vgmstream_log);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user