mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 15:01:40 +00:00
make CI builds happy.
-remove #ifdef DEBUG,#endif around fluid_dump_modulator.
This commit is contained in:
parent
7101d72d0e
commit
56bc0bd44c
2 changed files with 2 additions and 9 deletions
|
@ -245,13 +245,6 @@ configure_file ( ${CMAKE_SOURCE_DIR}/include/fluidsynth/version.h.in
|
|||
configure_file ( ${CMAKE_SOURCE_DIR}/include/fluidsynth.cmake
|
||||
${public_main_HEADER} )
|
||||
|
||||
if ( MSVC )
|
||||
if( enable-debug )
|
||||
# add DEBUG macro for preprocessor
|
||||
add_definitions ( -DDEBUG )
|
||||
endif( enable-debug )
|
||||
endif ( MSVC )
|
||||
|
||||
if ( WIN32 )
|
||||
include(generate_product_version)
|
||||
generate_product_version(
|
||||
|
|
|
@ -1040,7 +1040,7 @@ int fluid_mod_has_dest(const fluid_mod_t *mod, int gen)
|
|||
|
||||
|
||||
/* debug function: Prints the contents of a modulator */
|
||||
#ifdef DEBUG
|
||||
//#ifdef DEBUG
|
||||
void fluid_dump_modulator(fluid_mod_t * mod)
|
||||
{
|
||||
int src1=mod->src1;
|
||||
|
@ -1110,5 +1110,5 @@ void fluid_dump_modulator(fluid_mod_t * mod)
|
|||
}; /* switch dest */
|
||||
printf(", amount %9.2f, flags %3i, src2 %3i, flags2 %3i\n",amount, flags1, src2, flags2);
|
||||
};
|
||||
#endif
|
||||
//#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue