diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-09-26 22:13:24 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-09-26 22:13:24 -0400 |
commit | dc1a06ba05579abe215ceaf601d24c8d60558cb6 (patch) | |
tree | f28aad445c42bd17067619281636704f116e8fd6 | |
parent | 30d8a72d845bb76331659883815758c8223b9762 (diff) |
`and 50 percent` -> `and %011111111`
-rw-r--r-- | engine/phone/phone.asm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engine/phone/phone.asm b/engine/phone/phone.asm index 0c0cd5bb..cadd48c9 100644 --- a/engine/phone/phone.asm +++ b/engine/phone/phone.asm @@ -116,9 +116,10 @@ CheckPhoneCall:: nop jr nc, .no_call + ; 50% chance for a call call Random ld b, a - and 50 percent + and %01111111 cp b jr nz, .no_call |