diff --git a/include/types.h b/include/types.h index d4aebdc..87ce4ca 100644 --- a/include/types.h +++ b/include/types.h @@ -644,11 +644,11 @@ enum class AssignAlgorithm { DFS, BFS }; enum class DecompilerMode { PRIMARY, SECONDARY }; /* - * TODO 1.0.0 : combine CompilerMode and DecompilerMode into a single type: CompilationMode ? + * TODO : combine CompilerMode and DecompilerMode into a single type: CompilationMode ? */ /* - * TODO 1.0.0 : Remove all checks against Subcommand type in the codebase, prefer explicit CompilationMode parameters + * TODO : Remove all checks against Subcommand type in the codebase, prefer explicit CompilationMode parameters */ std::string subcommandString(Subcommand subcommand); diff --git a/src/cli_parser.cpp b/src/cli_parser.cpp index 4d6a8f5..2b57995 100644 --- a/src/cli_parser.cpp +++ b/src/cli_parser.cpp @@ -954,7 +954,7 @@ static void parseSubcommandOptions(PorytilesContext &ctx, int argc, char *const ctx.decompilerConfig.normalizeTransparencyColor = parseRgbColor(ctx.err, NORMALIZE_TRANSPARENCY, optarg); } else { - // TODO 1.0.0 : remove this deprecation warning + // TODO : remove this deprecation warning at some point in the future pt_warn("the no-arg version of `normalize-transparency' has been deprecated"); pt_println(stderr, " It is now the default Porytiles behavior, so you no longer need to specify this option."); diff --git a/src/driver.cpp b/src/driver.cpp index 992ed82..9a1f1cf 100644 --- a/src/driver.cpp +++ b/src/driver.cpp @@ -731,7 +731,6 @@ static void driveDecompilePrimary(PorytilesContext &ctx) /* * Import behavior header, if it was supplied */ - // TODO 1.0.0 : better error message if file did not exist? see compile version auto [behaviorMap, behaviorReverseMap] = prepareBehaviorsHeaderForImport(ctx, DecompilerMode::PRIMARY, ctx.decompilerSrcPaths.metatileBehaviors); @@ -755,7 +754,6 @@ static void driveDecompileSecondary(PorytilesContext &ctx) /* * Import behavior header, if it was supplied */ - // TODO 1.0.0 : better error message if file did not exist? see compile version auto [behaviorMap, behaviorReverseMap] = prepareBehaviorsHeaderForImport(ctx, DecompilerMode::SECONDARY, ctx.decompilerSrcPaths.metatileBehaviors);