Skip to content

Commit d6e70fe

Browse files
fspp: temp compile fix
1 parent 5441f0c commit d6e70fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fspp/fspp.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ namespace {
1919

2020
[[nodiscard]] std::string getAppInstallDir(AppID appID) {
2121
static Steam steam;
22-
return steam.getAppInstallDir(appID);
22+
return steam.getAppInstallDir(appID).string();
2323
}
2424

2525
} // namespace
2626

27-
std::optional<FileSystem> FileSystem::load(steampp::AppID appID, std::string_view gameID, const FileSystemOptions& options) {
27+
std::optional<FileSystem> FileSystem::load(AppID appID, std::string_view gameID, const FileSystemOptions& options) {
2828
const auto gamePath = ::getAppInstallDir(appID);
2929
if (gamePath.empty()) {
3030
return std::nullopt;

0 commit comments

Comments
 (0)