From 77c144944ca238bb1fbe823d02dc7958a6a48f95 Mon Sep 17 00:00:00 2001 From: Clanmaster21 Date: Thu, 9 Jan 2020 22:52:51 +0000 Subject: [PATCH] Remove inlining of isWS --- apps/lib/util.asm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/lib/util.asm b/apps/lib/util.asm index df04d4f..0dda00f 100644 --- a/apps/lib/util.asm +++ b/apps/lib/util.asm @@ -9,9 +9,7 @@ isWS: ; Set Z if WS found, unset if end-of-string. toWS: ld a, (hl) - cp ' ' - ret z - cp 0x09 + call isWS ret z cp 0x01 ; if a is null, carries and unsets z ret c