Skip to content

Commit

Permalink
Resolve app manifest from game library
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaming32 committed Mar 2, 2024
1 parent 615118e commit 24127f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "io.github.gaming32"
version = "1.0"
version = "1.0.1"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static Path findGamePath(int gameId) {

final VDFNode manifest;
try {
manifest = readVdf(STEAM_DIR.resolve("steamapps/appmanifest_" + gameIdStr + ".acf"));
manifest = readVdf(libraryPath.resolve("steamapps/appmanifest_" + gameIdStr + ".acf"));
} catch (IOException e) {
throw new UncheckedIOException(e);
}
Expand Down

0 comments on commit 24127f8

Please sign in to comment.