Skip to content

Commit

Permalink
MW6 Delta Animations Support
Browse files Browse the repository at this point in the history
(cherry picked from commit d0b5594)
  • Loading branch information
dest1yo committed Feb 17, 2024
1 parent 6c487cc commit 474ae82
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions src/WraithXCOD/WraithXCOD/CoDXAnimTranslator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,7 @@ std::unique_ptr<WraithAnim> CoDXAnimTranslator::TranslateXAnim(const std::unique
case SupportedGames::WorldWar2:
case SupportedGames::ModernWarfare4:
case SupportedGames::ModernWarfare5:
case SupportedGames::ModernWarfare6:
case SupportedGames::Vanguard:
// Build translations for 64bit games
DeltaTranslations64(Anim, (Animation->FrameCount > 255) ? 2 : 1, Animation);
Expand Down Expand Up @@ -686,6 +687,7 @@ std::unique_ptr<WraithAnim> CoDXAnimTranslator::TranslateXAnim(const std::unique
case SupportedGames::WorldWar2:
case SupportedGames::ModernWarfare4:
case SupportedGames::ModernWarfare5:
case SupportedGames::ModernWarfare6:
case SupportedGames::Vanguard:
// Build 2d rotations for 64bit games
Delta2DRotations64(Anim, (Animation->FrameCount > 255) ? 2 : 1, Animation);
Expand Down
10 changes: 5 additions & 5 deletions src/WraithXCOD/WraithXCOD/WraithXCOD.rc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ END
IDD_MAINDIALOG DIALOGEX 0, 0, 510, 290
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
EXSTYLE WS_EX_ACCEPTFILES
CAPTION "Greyhound v1.46.3.0"
CAPTION "Greyhound v1.46.3.1"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
CONTROL "",IDC_ASSETLIST,"SysListView32",LVS_REPORT | LVS_ALIGNLEFT | LVS_OWNERDATA | WS_BORDER | WS_TABSTOP,7,25,495,235
Expand Down Expand Up @@ -348,8 +348,8 @@ IDI_CHECKMARK ICON "..\\..\\WraithX\\Resources\\Che
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,46,3,0
PRODUCTVERSION 1,46,3,0
FILEVERSION 1,46,3,1
PRODUCTVERSION 1,46,3,1
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -366,12 +366,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "DTZxPorter / Scobalula / dest1yo"
VALUE "FileDescription", "Greyhound"
VALUE "FileVersion", "1.46.3.0"
VALUE "FileVersion", "1.46.3.1"
VALUE "InternalName", "Greyhound"
VALUE "LegalCopyright", "Copyright (C) 2024 DTZxPorter / Scobalula / dest1yo"
VALUE "OriginalFilename", "Greyhound.exe"
VALUE "ProductName", "Greyhound"
VALUE "ProductVersion", "1.46.3.0"
VALUE "ProductVersion", "1.46.3.1"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 474ae82

Please sign in to comment.