diff options
Diffstat (limited to 'engine/printer/printer_serial.asm')
-rw-r--r-- | engine/printer/printer_serial.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engine/printer/printer_serial.asm b/engine/printer/printer_serial.asm index 2ac75ca33..154cc2fd4 100644 --- a/engine/printer/printer_serial.asm +++ b/engine/printer/printer_serial.asm @@ -9,8 +9,8 @@ Printer_StartTransmission: ld [wPrinterOpcode], a ld hl, wPrinterConnectionOpen set 0, [hl] - ld a, [wGBPrinter] - ld [wGBPrinterSettings], a + ld a, [wGBPrinterBrightness] + ld [wPrinterExposureTime], a xor a ld [wJumptableIndex], a ret @@ -353,11 +353,11 @@ Printer_ComputeChecksum: Printer_StageHeaderForSend: ld a, $1 ld [wGameboyPrinter2bppSource + 0], a - ld a, [wcbfa] + ld a, [wPrinterMargins] ld [wGameboyPrinter2bppSource + 1], a - ld a, %11100100 + ld a, %11100100 ; 3,2,1,0 ld [wGameboyPrinter2bppSource + 2], a - ld a, [wGBPrinterSettings] + ld a, [wPrinterExposureTime] ld [wGameboyPrinter2bppSource + 3], a ret |