This commit is contained in:
bryanthaboi
2026-07-23 11:49:45 -04:00
parent 4a50cb0728
commit 6239387643
7 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -112,7 +112,7 @@ local function detectPortable()
local src = love.filesystem.getSource and love.filesystem.getSource()
local sbd = love.filesystem.getSourceBaseDirectory
and love.filesystem.getSourceBaseDirectory()
-- A packaged macOS build nests the game inside PokemonRed.app/Contents/
-- A packaged macOS build nests the game inside gen1recomp.app/Contents/
-- Resources, so getSource()/getSourceBaseDirectory() point INSIDE the
-- bundle -- not where the player drops portable.txt (next to the .app).
-- Recover the folder containing the .app so a packaged app finds its
+2 -2
View File
@@ -11,9 +11,9 @@ local Version = {
cache = "rom-cache-v5", -- ROM import cache generation (RomImporter marker)
}
-- "Pokemon Red (Gen 1 Recompilation Project) v1.0.0"
-- "gen1recomp v1.0.0"
function Version.title(base)
return (base or "Pokemon Red (Gen 1 Recompilation Project)")
return (base or "gen1recomp")
.. " v" .. Version.engine
end