From 24af62a3e53158e889384ee41fcd81b8f47f6985 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 14 Feb 2021 22:20:07 -0500 Subject: [PATCH] Sets a default handler of 1. --- Machines/Apple/ADB/ReactiveDevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/Apple/ADB/ReactiveDevice.cpp b/Machines/Apple/ADB/ReactiveDevice.cpp index 02fba6983..3b7616026 100644 --- a/Machines/Apple/ADB/ReactiveDevice.cpp +++ b/Machines/Apple/ADB/ReactiveDevice.cpp @@ -152,7 +152,7 @@ void ReactiveDevice::receive_bytes(size_t count) { } void ReactiveDevice::reset() { - register3_ = uint16_t(0x6000 | (default_adb_device_id_ << 8)); + register3_ = uint16_t(0x6001 | (default_adb_device_id_ << 8)); } void ReactiveDevice::post_service_request() {