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 src/Husky/Husky/Games/BlackOps3.cs
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ public static void ExportBSPData(ProcessReader reader, long assetPoolsAddress, l
}
else
{
printCallback?.Invoke("Call of Duty: Advanced Warfare is supported, but this EXE is not.");
printCallback?.Invoke("Call of Duty: Black Ops 3 is supported, but this EXE is not.");
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/Husky/Husky/HuskyUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class HuskyUtil
{ "t6mp", new GameDefinition(0xD4B340, 0xD4AF80, "mp", BlackOps2.ExportBSPData) },
{ "t6sp", new GameDefinition(0xBD46B8, 0xBD42F8, "sp", BlackOps2.ExportBSPData) },
// Call of Duty: Black Ops III
{ "BlackOps3", new GameDefinition(0x94093F0, 0, "core", BlackOps3.ExportBSPData) },
{ "BlackOps3", new GameDefinition(0x94073F0, 0, "core", BlackOps3.ExportBSPData) },
// Call of Duty: Ghosts
{ "iw6mp64_ship", new GameDefinition(0x1409E4F20, 0x1409E4E20, "mp", Ghosts.ExportBSPData) },
{ "iw6sp64_ship", new GameDefinition(0x14086DCB0, 0x14086DBB0, "sp", Ghosts.ExportBSPData) },
Expand Down