mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-19 14:27:45 +01:00
fix cs breaks
This commit is contained in:
parent
167e76911e
commit
084f8b55e7
3 changed files with 7 additions and 7 deletions
|
|
@ -165,7 +165,7 @@ internal unsafe class PluginEventController : IDisposable
|
|||
{
|
||||
var paramKeyMatches = currentEvent->Param == eventEntry.ParamKey;
|
||||
var eventListenerAddressMatches = (nint)currentEvent->Listener == this.EventListener.Address;
|
||||
var eventTypeMatches = currentEvent->Type == eventType;
|
||||
var eventTypeMatches = currentEvent->State.EventType == eventType;
|
||||
|
||||
if (paramKeyMatches && eventListenerAddressMatches && eventTypeMatches)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue