fix: moving constant

This commit is contained in:
Chubby Granny Chaser
2025-10-22 17:37:00 +01:00
parent ddbac621fb
commit 68b3de9b7f
2 changed files with 10 additions and 5 deletions

View File

@@ -31,6 +31,11 @@ export const logsPath = path.join(
`logs${isStaging ? "-staging" : ""}`
);
export const screenshotsPath = path.join(
SystemPath.getPath("userData"),
"Screenshots"
);
export const achievementSoundPath = app.isPackaged
? path.join(process.resourcesPath, "achievement.wav")
: path.join(__dirname, "..", "..", "resources", "achievement.wav");