Fix #20: Typo that still actually worked

`switch_to_highbuf()` mistakenly refers to `switch` instead of `self`.
Though, it doesn't actually matter since in this particular script they're the
same object.
This commit is contained in:
Mikaela Szekely 2018-06-30 07:53:02 -06:00
parent 433077ab72
commit 15021047d8
No known key found for this signature in database
GPG Key ID: AA45D59374537FB5

View File

@ -546,8 +546,8 @@ class RCMHax:
def switch_to_highbuf(self): def switch_to_highbuf(self):
""" Switches to the higher RCM buffer, reducing the amount that needs to be copied. """ """ Switches to the higher RCM buffer, reducing the amount that needs to be copied. """
if switch.get_current_buffer_address() != self.COPY_BUFFER_ADDRESSES[1]: if self.get_current_buffer_address() != self.COPY_BUFFER_ADDRESSES[1]:
switch.write(b'\0' * 0x1000) self.write(b'\0' * 0x1000)
def trigger_controlled_memcpy(self, length=None): def trigger_controlled_memcpy(self, length=None):