Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
CookiePLMonster committed Nov 1, 2024
1 parent 75a3f16 commit 7d1bd8a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions SilentPatch/RWGTA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ RwBool RwRenderStateSet(RwRenderState state, void *value)
}

// Unreachable stub
RwBool RwMatrixDestroy(RwMatrix* mpMat) { assert(!"Unreachable!"); return TRUE; }
RwBool RwMatrixDestroy(RwMatrix* /*mpMat*/) { assert(!"Unreachable!"); return TRUE; }

bool RWGTA::Patches::TryLocateRwD3D8() try
{
using namespace Memory;
using namespace hook::txn;

auto fnRwD3D8SetRenderState = [] {
auto pfnRwD3D8SetRenderState = [] {
try {
// Everything except for III Steam
return static_cast<decltype(RwD3D8SetRenderState)*>(get_pattern("39 0C C5 ? ? ? ? 74 31", -8));
Expand All @@ -84,7 +84,7 @@ bool RWGTA::Patches::TryLocateRwD3D8() try
return static_cast<decltype(RwD3D8SetRenderState)*>(get_pattern("8B 0C C5 ? ? ? ? 3B CA", -8));
}
}();
auto fnRwD3D8GetRenderState = [] {
auto pfnRwD3D8GetRenderState = [] {
try {
// Everything except for III Steam
return static_cast<decltype(RwD3D8GetRenderState)*>(get_pattern("8B 0C C5 ? ? ? ? 89 0A C3", -8));
Expand All @@ -94,8 +94,8 @@ bool RWGTA::Patches::TryLocateRwD3D8() try
}
}();

::fnRwD3D8SetRenderState = fnRwD3D8SetRenderState;
::fnRwD3D8GetRenderState = fnRwD3D8GetRenderState;
fnRwD3D8SetRenderState = pfnRwD3D8SetRenderState;
fnRwD3D8GetRenderState = pfnRwD3D8GetRenderState;
return true;
}
catch (const hook::txn_exception&)
Expand Down

0 comments on commit 7d1bd8a

Please sign in to comment.