From f4ad071170e4c1b396889e83da567840bc402abc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20Dahlstr=C3=B6m?= Date: Sat, 4 Mar 2023 03:50:07 +0100 Subject: [PATCH] Remove '#' from label names It was not supported by JWasm. Interesting how solidloop is not defined anywhere, but the code still assembles fine. --- LIB386/LIB_SVGA/TEXTURE.ASM | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LIB386/LIB_SVGA/TEXTURE.ASM b/LIB386/LIB_SVGA/TEXTURE.ASM index 094f0b5..85d4b67 100644 --- a/LIB386/LIB_SVGA/TEXTURE.ASM +++ b/LIB386/LIB_SVGA/TEXTURE.ASM @@ -1691,7 +1691,7 @@ disptexture proc mov di,ax lodsw sub ax,di - js #dispret + js dispret add si,2 mov boucle,ax @@ -1774,9 +1774,9 @@ h1: add bx,4 ; next xy add di,640 ; next lig dec boucle - jns #solidloop + jns solidloop -#dispret: pop ds +dispret: pop ds ret disptexture endp