Skip to content

Commit

Permalink
Fix Parasyte Issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Scobalula committed May 13, 2022
1 parent 2c11d86 commit 64892c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions src/WraithXCOD/WraithXCOD/CoDAssets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -455,8 +455,6 @@ FindGameResult CoDAssets::BeginGameMode()
// Aquire a lock
std::lock_guard<std::mutex> Lock(CodMutex);

// Clear Parasyte
ps::state = nullptr;
// Result
auto Result = FindGameResult::Success;

Expand Down Expand Up @@ -502,7 +500,8 @@ FindGameResult CoDAssets::FindGame()
{
// Attempt to locate one of the supported games
auto Processes = Systems::GetProcesses();

// Clear Parasyte
ps::state = nullptr;
// Reset it
GameInstance.reset();
// Clear out existing offsets
Expand Down
8 changes: 4 additions & 4 deletions src/WraithXCOD/WraithXCOD/WraithXCOD.rc
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,8 @@ IDI_CHECKMARK ICON "..\\..\\WraithX\\Resources\\Che
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,20,0,1
PRODUCTVERSION 1,20,0,1
FILEVERSION 1,20,0,2
PRODUCTVERSION 1,20,0,2
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -386,12 +386,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "DTZxPorter / Scobalula"
VALUE "FileDescription", "Greyhound"
VALUE "FileVersion", "1.20.0.1"
VALUE "FileVersion", "1.20.0.2"
VALUE "InternalName", "Greyhound"
VALUE "LegalCopyright", "Copyright (C) 2022 DTZxPorter / Scobalula"
VALUE "OriginalFilename", "Greyhound.exe"
VALUE "ProductName", "Greyhound"
VALUE "ProductVersion", "1.20.0.1"
VALUE "ProductVersion", "1.20.0.2"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 64892c1

Please sign in to comment.