From c77e7c268f87c8fa482037bcba1f2195f68bfd9d Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 20 Jan 2023 23:08:41 -0500 Subject: [PATCH] 1 = disable, 0 = enable. --- Components/9918/Implementation/9918.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Components/9918/Implementation/9918.cpp b/Components/9918/Implementation/9918.cpp index f610ccf94..bbde7889a 100644 --- a/Components/9918/Implementation/9918.cpp +++ b/Components/9918/Implementation/9918.cpp @@ -727,7 +727,7 @@ void Base::write_register(uint8_t value) { break; case 17: - Storage::increment_indirect_register_ = low_write_ & 0x80; + Storage::increment_indirect_register_ = !(low_write_ & 0x80); Storage::indirect_register_ = low_write_ & 0x3f; break;