From 99e66c25577e367d6c7ca75fea8b466b54c3317a Mon Sep 17 00:00:00 2001 From: Rangi Date: Wed, 23 Dec 2020 16:29:30 -0500 Subject: Rename some labels - Remove "Buffer" suffix from some byte and word quantities - Change "Ptr" to "Pointer" Fixes #789 --- home/farcall.asm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'home/farcall.asm') diff --git a/home/farcall.asm b/home/farcall.asm index 567272651..5e8da29a3 100644 --- a/home/farcall.asm +++ b/home/farcall.asm @@ -28,9 +28,9 @@ ReturnFarCall:: ; We want to retain the contents of f. ; To do this, we can pop to bc instead of af. ld a, b - ld [wFarCallBCBuffer], a + ld [wFarCallBC], a ld a, c - ld [wFarCallBCBuffer + 1], a + ld [wFarCallBC + 1], a ; Restore the working bank. pop bc @@ -38,9 +38,9 @@ ReturnFarCall:: rst Bankswitch ; Restore the contents of bc. - ld a, [wFarCallBCBuffer] + ld a, [wFarCallBC] ld b, a - ld a, [wFarCallBCBuffer + 1] + ld a, [wFarCallBC + 1] ld c, a ret -- cgit v1.2.3