Skip to content

Commit

Permalink
update submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
ThirteenAG committed Oct 10, 2024
1 parent b4a1e76 commit 9dee055
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion external/hooking
Submodule hooking updated 1 files
+1 −0 Hooking.Patterns.h
2 changes: 1 addition & 1 deletion external/injector
6 changes: 5 additions & 1 deletion source/PCSX2F.XboxRainDroplets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,11 @@ void RenderDroplets()
memset(pXRData, 0, 255);
}
else
pXRData = (XRData*)(GetEEMainMemoryStart() + GetPluginSymbolAddr("PLUGINS/PCSX2F.XboxRainDroplets.elf", "XboxRainDropletsData"));
{
auto sym = GetPluginSymbolAddr("PLUGINS/PCSX2F.XboxRainDroplets.elf", "XboxRainDropletsData");
if (sym)
pXRData = (XRData*)(GetEEMainMemoryStart() + sym);
}
}
else
pXRData = nullptr;
Expand Down

0 comments on commit 9dee055

Please sign in to comment.