1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2026-04-20 15:16:38 +00:00

Recommend default extensions

This commit is contained in:
Fred Sauer
2026-03-01 11:07:29 -08:00
parent 231f9ac9dd
commit 8a2be85dfe
35 changed files with 55 additions and 58 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ Mandatory functions:
These are for the compiler/editor:
~~~
getToolForFilename(s:string) : string;
getDefaultExtension() : string;
getDefaultExtensions() : string[];
getPresets() : Preset[];
~~~
@@ -205,7 +205,7 @@ class ColecoVisionMAMEPlatform extends BaseMAMEPlatform implements Platform {
getPresets() { return ColecoVision_PRESETS; }
getToolForFilename = getToolForFilename_z80;
getDefaultExtension() { return ".c"; };
getDefaultExtensions() { return [".c", ".ns", ".s", ".scc", ".sgb", ".z", ".wiz"]; }
}
~~~