fix null exception when enableRumble setting to false (#1145)

This commit is contained in:
Genesis 2024-07-19 22:44:46 +08:00 committed by GitHub
parent 8890b053c7
commit b6715638a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -91,6 +91,7 @@ namespace BetterJoyForCemu.Controller {
}
private void FeedbackReceivedRcv(object _sender, Xbox360FeedbackReceivedEventArgs e) {
if(FeedbackReceived!=null)
FeedbackReceived(e);
}