From e842755d77ac8946f8b8a8631999a8941dc04266 Mon Sep 17 00:00:00 2001 From: John Breaux Date: Mon, 17 Apr 2023 05:39:18 -0500 Subject: [PATCH] quirks: Fix description for screen_wrap --- src/cpu/quirks.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpu/quirks.rs b/src/cpu/quirks.rs index 9d04387..235fd03 100644 --- a/src/cpu/quirks.rs +++ b/src/cpu/quirks.rs @@ -11,7 +11,7 @@ pub struct Quirks { pub shift: bool, /// Super Chip: Draw operations shouldn't pause execution until the next timer tick pub draw_wait: bool, - /// XO-Chip: Draw operations shouldn't wrap from the bottom of the screen to the top + /// XO-Chip: Draw operations should wrap from bottom to top and side to side pub screen_wrap: bool, /// Super Chip: DMA instructions `Fx55`/`Fx65` shouldn't change I to I + x + 1 pub dma_inc: bool,