Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Unreal/GameDatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ void FArchive::DetectGame()
if (ArVer == 721 && ArLicenseeVer == 148) SET(GAME_Thief4);
#endif
#if BIOSHOCK3
if (ArVer == 727 && ArLicenseeVer == 75) SET(GAME_Bioshock3);
if (ArVer == 727 && (ArLicenseeVer == 75 || ArLicenseeVer == 69)) SET(GAME_Bioshock3);
#endif
#if BULLETSTORM
if (ArVer == 742 && ArLicenseeVer == 29) SET(GAME_Bulletstorm);
Expand Down
2 changes: 1 addition & 1 deletion Unreal/UnrealPackage/UnPackage3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ void FPackageFileSummary::Serialize3(FArchive &Ar)
Ar << DependsOffset;

#if BIOSHOCK3
if (Ar.Game == GAME_Bioshock3) goto read_unk38;
if (Ar.Game == GAME_Bioshock3 && Ar.ArLicenseeVer > 69) goto read_unk38;
#endif

#if DUNDEF
Expand Down