# HG changeset patch # User Jordi GutiƩrrez Hermoso # Date 1570021689 14400 # Node ID 0c40b4e8270ec3e40f3b0586dcf65707e5156208 # Parent 9c97adbb349c8a516eb4c03e7fcfe65ef3d0abb5 NES_ROM: modify comment to explain that we only rotate bytes on the PRG diff --git a/nes.py b/nes.py --- a/nes.py +++ b/nes.py @@ -9,7 +9,8 @@ class NES_ROM(object): def __init__(self, filename): self.filename = filename - # To track circular rotation of the ROM bytes, in case the + + # To track circular rotation of the PRG bytes, in case the # tiles aren't aligned to 16-byte boundaries and the user # moves it. self.initial_position = 0