mirror of
https://github.com/irmen/prog8.git
synced 2025-11-01 06:16:15 +00:00
output_type is now part of custom target config and atari again defaults to .xex
This commit is contained in:
@@ -384,13 +384,13 @@ internal fun determineCompilationOptions(program: Program, compTarget: ICompilat
|
||||
.toList()
|
||||
|
||||
val outputType = if (outputTypeStr == null) {
|
||||
OutputType.PRG
|
||||
compTarget.defaultOutputType
|
||||
} else {
|
||||
try {
|
||||
OutputType.valueOf(outputTypeStr)
|
||||
} catch (_: IllegalArgumentException) {
|
||||
// set default value; actual check and error handling of invalid option is handled in the AstChecker later
|
||||
OutputType.PRG
|
||||
compTarget.defaultOutputType
|
||||
}
|
||||
}
|
||||
var launcherType = if (launcherTypeStr == null)
|
||||
|
||||
Reference in New Issue
Block a user