From 80aea588fb3d1f0540730c57c8c130134d0dd48f Mon Sep 17 00:00:00 2001 From: Aoineko Date: Tue, 18 Jun 2024 22:55:47 +0200 Subject: [PATCH] [Sample] Fixed filename case for Linux/macOS --- projects/samples/s_dos2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/samples/s_dos2.js b/projects/samples/s_dos2.js index bedb0fab..cdbc23f7 100644 --- a/projects/samples/s_dos2.js +++ b/projects/samples/s_dos2.js @@ -15,7 +15,7 @@ DOSParseArg = true; LibModules = [ "dos", "dos_mapper", "string", ...LibModules]; //-- List of data files to copy to disk (array) -DiskFiles = [ "content/img/IMAGE01.SC5", "content/img/IMAGE04.SC5", "content/img/PALETTE.SC5", "content/SAMPLE.DRV" ]; +DiskFiles = [ "content/img/IMAGE01.SC5", "content/img/IMAGE04.SC5", "content/img/PALETTE.SC5", "content/sample.drv" ]; //-- Emulator extra parameters to be add to command-line (string). Emulator sotfware specific EmulExtraParam = "-ext ram1mb";