From f41b02927b1e49fa77ccec46f2acaf3b029b4ec2 Mon Sep 17 00:00:00 2001 From: Nino van Hooff Date: Tue, 20 Feb 2024 22:28:16 +0100 Subject: [PATCH 1/2] CHANGE pdx name to use project name --- src/playdate/build/utils.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/playdate/build/utils.nim b/src/playdate/build/utils.nim index 6c3dc46..0fd99d4 100644 --- a/src/playdate/build/utils.nim +++ b/src/playdate/build/utils.nim @@ -23,7 +23,7 @@ proc nimble*(args: varargs[string]) = proc pdxName*(): string = ## The name of the pdx file to generate - "playdate" & ".pdx" + projectName() & ".pdx" proc sdkPath*(): string = ## Returns the path of the playdate SDK From 4160458b07dcfc14ef7012280aea10ec7389eafb Mon Sep 17 00:00:00 2001 From: Nino van Hooff Date: Sat, 16 Mar 2024 13:49:23 +0100 Subject: [PATCH 2/2] CHANGE pdxName to projectDir --- src/playdate/build/utils.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/playdate/build/utils.nim b/src/playdate/build/utils.nim index 0fd99d4..ba92eef 100644 --- a/src/playdate/build/utils.nim +++ b/src/playdate/build/utils.nim @@ -23,7 +23,7 @@ proc nimble*(args: varargs[string]) = proc pdxName*(): string = ## The name of the pdx file to generate - projectName() & ".pdx" + projectDir() & ".pdx" proc sdkPath*(): string = ## Returns the path of the playdate SDK