gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 1c706590c15088a4ec61b64ab6980336f9ab99f5 parent 3e7ce5d54b38681f8b3411f5e480f47288473de7 Author: Toxa <untoxa@mail.ru> Date: Sun, 7 Sep 2025 01:00:29 +0300 Merge branch 'develop' of https://github.com/gbdk-2020/gbdk-2020 into develop Diffstat:
| M | gbdk-lib/include/gb/gb.h | 8 | ++++---- |
| M | gbdk-lib/include/nes/nes.h | 4 | ++-- |
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/gbdk-lib/include/gb/gb.h b/gbdk-lib/include/gb/gb.h @@ -2214,8 +2214,8 @@ void vmemset (void *s, uint8_t c, size_t n) OLDCALL PRESERVES_REGS(b, c); @param x X Start position in Background Map tile coordinates. Range 0 - 31 @param y Y Start position in Background Map tile coordinates. Range 0 - 31 - @param w Width of area to set in tiles. Range 0 - 31 - @param h Height of area to set in tiles. Range 0 - 31 + @param w Width of area to set in tiles. Range 1 - 32 + @param h Height of area to set in tiles. Range 1 - 32 @param tile Fill value */ void fill_bkg_rect(uint8_t x, uint8_t y, uint8_t w, uint8_t h, uint8_t tile) OLDCALL PRESERVES_REGS(b, c); @@ -2225,8 +2225,8 @@ void fill_bkg_rect(uint8_t x, uint8_t y, uint8_t w, uint8_t h, uint8_t tile) OLD @param x X Start position in Window Map tile coordinates. Range 0 - 31 @param y Y Start position in Window Map tile coordinates. Range 0 - 31 - @param w Width of area to set in tiles. Range 0 - 31 - @param h Height of area to set in tiles. Range 0 - 31 + @param w Width of area to set in tiles. Range 1 - 32 + @param h Height of area to set in tiles. Range 1 - 32 @param tile Fill value */ void fill_win_rect(uint8_t x, uint8_t y, uint8_t w, uint8_t h, uint8_t tile) OLDCALL PRESERVES_REGS(b, c); diff --git a/gbdk-lib/include/nes/nes.h b/gbdk-lib/include/nes/nes.h @@ -1302,8 +1302,8 @@ void vmemset (void *s, uint8_t c, size_t n) NO_OVERLAY_LOCALS; @param x X Start position in Background Map tile coordinates. Range 0 - 31 @param y Y Start position in Background Map tile coordinates. Range 0 - 31 - @param w Width of area to set in tiles. Range 0 - 31 - @param h Height of area to set in tiles. Range 0 - 31 + @param w Width of area to set in tiles. Range 1 - 32 + @param h Height of area to set in tiles. Range 1 - 32 @param tile Fill value */ void fill_bkg_rect(uint8_t x, uint8_t y, uint8_t w, uint8_t h, uint8_t tile) NO_OVERLAY_LOCALS;
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.