diff options
Diffstat (limited to 'modules/mpc/SCsub')
-rw-r--r-- | modules/mpc/SCsub | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/modules/mpc/SCsub b/modules/mpc/SCsub index 09f0c05daa..deadf8687d 100644 --- a/modules/mpc/SCsub +++ b/modules/mpc/SCsub @@ -7,22 +7,22 @@ env_mpc = env_modules.Clone() # Thirdparty source files if (env["libmpcdec"] != "system"): # builtin - thirdparty_dir = "#thirdparty/libmpcdec/" - thirdparty_sources = [ - "huffman.c", - "mpc_bits_reader.c", - "mpc_decoder.c", - "mpc_demux.c", - "mpc_reader.c", - "requant.c", - "streaminfo.c", - "synth_filter.c", - ] + thirdparty_dir = "#thirdparty/libmpcdec/" + thirdparty_sources = [ + "huffman.c", + "mpc_bits_reader.c", + "mpc_decoder.c", + "mpc_demux.c", + "mpc_reader.c", + "requant.c", + "streaminfo.c", + "synth_filter.c", + ] - thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources] + thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources] - env_mpc.add_source_files(env.modules_sources, thirdparty_sources) - env_mpc.Append(CPPPATH = [thirdparty_dir]) + env_mpc.add_source_files(env.modules_sources, thirdparty_sources) + env_mpc.Append(CPPPATH = [thirdparty_dir]) # Godot source files env_mpc.add_source_files(env.modules_sources, "*.cpp") |