summaryrefslogtreecommitdiff
path: root/sh.asm
diff options
context:
space:
mode:
authorfaissaloo <faissaloo@gmail.com>2016-07-24 14:03:55 +0100
committerfaissaloo <faissaloo@gmail.com>2016-07-24 14:03:55 +0100
commitb170a6bcb443f6e7ac045de38aef3da78be179a6 (patch)
tree9a1ba845b4906db2b54f33d342e16472f622be3b /sh.asm
parent0b8b4c47a55e647932edc89d994483a56eb22291 (diff)
downloaddbsh-b170a6bcb443f6e7ac045de38aef3da78be179a6.tar.gz
Bugfix for directory parsing not working properly
Diffstat (limited to 'sh.asm')
-rw-r--r--sh.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/sh.asm b/sh.asm
index de56eaf..063bae1 100644
--- a/sh.asm
+++ b/sh.asm
@@ -231,9 +231,9 @@ _parse1r:
jmp _parse1
_sabsf:
- cmp r8, 0x1
- jg _parse1r
- mov r13, 0x1
+ test r8, r8
+ je _parse1r
+ mov r13, 0x2
jmp _parse1r
_subz: