aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/dosbox-compiler.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/dosbox-compiler.ts')
-rw-r--r--lib/compilers/dosbox-compiler.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/dosbox-compiler.ts b/lib/compilers/dosbox-compiler.ts
index 2d48d2c62..8ece53ded 100644
--- a/lib/compilers/dosbox-compiler.ts
+++ b/lib/compilers/dosbox-compiler.ts
@@ -38,8 +38,8 @@ export class DosboxCompiler extends BaseCompiler {
constructor(compilerInfo, env) {
super(compilerInfo, env);
- this.dosbox = this.compilerProps(`compiler.${this.compiler.id}.dosbox`);
- this.root = this.compilerProps(`compiler.${this.compiler.id}.root`);
+ this.dosbox = this.compilerProps<string>(`compiler.${this.compiler.id}.dosbox`);
+ this.root = this.compilerProps<string>(`compiler.${this.compiler.id}.root`);
this.asm = new TurboCAsmParser(this.compilerProps);
}