summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/text.inc2
-rw-r--r--tools/coverage.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/text.inc b/include/text.inc
index b293fd5..9de853a 100644
--- a/include/text.inc
+++ b/include/text.inc
@@ -1,7 +1,7 @@
INCLUDE "charmap.inc"
; Outputs each character of each argument as a 16-bit word
-; (dw "string" does not do this: https://github.com/rednex/rgbds/issues/568)
+; (dw "string" does not do this: https://github.com/gbdev/rgbds/issues/568)
text: macro
_arg = 1
rept _NARG
diff --git a/tools/coverage.py b/tools/coverage.py
index 3e57255..1815d7c 100644
--- a/tools/coverage.py
+++ b/tools/coverage.py
@@ -43,7 +43,7 @@ def main():
if s['beg'] > s['end']:
continue
if s['beg'] == 0x0000 and s['end'] > 0xFFFF:
- # https://github.com/rednex/rgbds/issues/515
+ # https://github.com/gbdev/rgbds/issues/515
continue
beg = s['beg'] & bank_mask
end = s['end'] & bank_mask