mirror of
https://github.com/raphnet/gc_n64_usb-v3
synced 2025-02-21 13:21:52 -05:00
Fix null pointer dereference
This commit is contained in:
parent
cc3ca163c4
commit
019301b7b2
2
main.c
2
main.c
@ -321,7 +321,7 @@ int main(void)
|
||||
/* Try to auto-detect controller if none*/
|
||||
if (!pad) {
|
||||
pad = detectPad();
|
||||
if (pad->hotplug) {
|
||||
if (pad && (pad->hotplug)) {
|
||||
// For gamecube, this make sure the next
|
||||
// analog values we read become the center
|
||||
// reference.
|
||||
|
Loading…
x
Reference in New Issue
Block a user