Skip to content

Commit

Permalink
Black Ops 2 Zombies DLC 5 build support (#55)
Browse files Browse the repository at this point in the history
* Black Ops 2 DLC 5 build support

* added BO2 DLC 5 build exe support

* Updated README.md for BO2 ZMBUILD-764 support

---------

Co-authored-by: Clippy95 <[email protected]>
  • Loading branch information
2 people authored and marinesciencedude committed Dec 26, 2024
1 parent 46312cf commit 5c61045
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Mousehook implements mouse input into games by injecting into game memory, most
| Call Of Duty World At War | Singleplayer & Multiplayer TU7 | 4156081C | Fair |
| Call Of Duty Modern Warfare 2 | Singleplayer & Multiplayer TU0 / 482 alpha SP ".xex only" | 41560817 | Fair |
| Call Of Duty Future Warfare "NX1" | Nightly_SP_maps / nx1sp.xex / nx1mp_demo.xex / nx1mp.xex / NightlyMPmaps | 4156089E | Fair |
| Call Of Duty Black Ops 2 Greenlight | ".xex only" | 415608C3 | Fair |
| Call Of Duty Black Ops 2 | Greenlight .xex only <br/>DLC 5 builds xex/exe <br/>version ZMBUILD-764 c4b2078a | 415608C3 | Fair |
| Call Of Duty Ghosts Alpha | 2-iw6mp.exe / 1-iw6sp.exe / default.xex "May 08 2013 build" | 4156088E | Fair |
| Call Of Duty Advanced Warfare | Singleplayer & Multiplayer TU17 | 41560914 | Fair | <sub> Modifier bound to readback_resolve <br/>Default: **Capslock** |
| Wolfenstein | Singleplayer TU0 | 415607DE | Fair |
Expand Down
6 changes: 6 additions & 0 deletions src/xenia/hid/winkey/hookables/CallOfDuty.cc
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,12 @@ std::map<CallOfDutyGame::GameBuild, GameBuildAddrs> supported_builds{
{CallOfDutyGame::GameBuild::New_Moon_PatchedXEX,
{0x82004860, 0x63675F66, kTitleIdCODBO2, 0x2C38, NULL, 0x82866DAC,
0x829FA9C8, NULL}},
{CallOfDutyGame::GameBuild::CallOfDutyBO2_ZM_DLC5_DEV_XEX,
{0x82006C84, 0x63675F66, kTitleIdCODBO2, 0x2C90, NULL, 0x82AB245C,
0x82C805BC, NULL}},
{CallOfDutyGame::GameBuild::CallOfDutyBO2_ZM_DLC5_DEV_EXE,
{0x9201733C, 0x63675F66, kTitleIdCODBO2, 0x2C90, NULL, 0x82EC855C,
0x831052D8, NULL}},
{CallOfDutyGame::GameBuild::CallOfDutyMW3_TU0_MP,
{0x8200C558, 0x63675F66, kTitleIdCODMW3, 0x35F4, NULL, 0x82599598,
0x826E0A80, 0x823243E0}},
Expand Down
2 changes: 2 additions & 0 deletions src/xenia/hid/winkey/hookables/CallOfDuty.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ class CallOfDutyGame : public HookableGame {
CallOfDuty3_MP_TU0,
CallOfDuty3_MP_TU3,
New_Moon_PatchedXEX,
CallOfDutyBO2_ZM_DLC5_DEV_XEX,
CallOfDutyBO2_ZM_DLC5_DEV_EXE,
CallOfDutyMW3_TU0_MP,
CallOfDutyMW2_TU0_MP,
CallOfDutyNX1_Nightly_SP_maps,
Expand Down

0 comments on commit 5c61045

Please sign in to comment.