Merge remote-tracking branch 'ofw/dev' into mntm-dev

This commit is contained in:
Willy-JL
2024-07-10 22:38:00 +01:00
3 changed files with 6 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ Import("env")
env.Append(
CPPPATH=[
"#/",
"#/lib", # TODO FL-3553: remove!
"#/lib",
# Ugly hack
Dir("../assets/compiled"),
Dir("../../icons"),

View File

@@ -100,7 +100,6 @@ static int mtar_compressed_file_close(void* stream) {
compress_stream_decoder_free(compressed_stream->decoder);
}
storage_file_close(compressed_stream->stream);
storage_file_free(compressed_stream->stream);
free(compressed_stream);
}
return MTAR_ESUCCESS;

View File

@@ -93,6 +93,11 @@ vars.AddVariables(
help="Enable strict import check for .faps",
default=True,
),
(
"ARGS",
"Extra arguments to pass to certain scripts supporting it",
"",
),
)
Return("vars")