gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 53445a6b8e0287542193381bb5402906ebb7a024 parent 4e493488e443df085ef7906c58db1189c5488010 Author: Toxa <untoxa@mail.ru> Date: Wed, 3 Jan 2024 22:05:36 +0300 remove legacy types from the metasprites api Diffstat:
| M | gbdk-lib/include/gb/metasprites.h | 2 | +- |
| M | gbdk-lib/include/msx/metasprites.h | 2 | +- |
| M | gbdk-lib/include/nes/metasprites.h | 2 | +- |
| M | gbdk-lib/include/sms/metasprites.h | 2 | +- |
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/gbdk-lib/include/gb/metasprites.h b/gbdk-lib/include/gb/metasprites.h @@ -122,7 +122,7 @@ static void __hide_metasprite(uint8_t id); @see hide_sprite, MAX_HARDWARE_SPRITES */ -void hide_sprites_range(UINT8 from, UINT8 to); +void hide_sprites_range(uint8_t from, uint8_t to); /** Moves metasprite to the absolute position x and y diff --git a/gbdk-lib/include/msx/metasprites.h b/gbdk-lib/include/msx/metasprites.h @@ -54,7 +54,7 @@ static void __hide_metasprite(uint8_t id) Z88DK_FASTCALL PRESERVES_REGS(iyh, iyl * @param from start OAM index * @param to finish OAM index */ -void hide_sprites_range(UINT8 from, UINT8 to) Z88DK_CALLEE PRESERVES_REGS(iyh, iyl); +void hide_sprites_range(uint8_t from, uint8_t to) Z88DK_CALLEE PRESERVES_REGS(iyh, iyl); /** Moves metasprite to the absolute position x and y diff --git a/gbdk-lib/include/nes/metasprites.h b/gbdk-lib/include/nes/metasprites.h @@ -61,7 +61,7 @@ static void __hide_metasprite(uint8_t id) OLDCALL; * @param from start OAM index * @param to finish OAM index */ -void hide_sprites_range(UINT8 from, UINT8 to) OLDCALL; +void hide_sprites_range(uint8_t from, uint8_t to) OLDCALL; /** Moves metasprite to the absolute position x and y diff --git a/gbdk-lib/include/sms/metasprites.h b/gbdk-lib/include/sms/metasprites.h @@ -55,7 +55,7 @@ static void __hide_metasprite(uint8_t id) Z88DK_FASTCALL PRESERVES_REGS(iyh, iyl * @param from start OAM index * @param to finish OAM index */ -void hide_sprites_range(UINT8 from, UINT8 to) PRESERVES_REGS(iyh, iyl); +void hide_sprites_range(uint8_t from, uint8_t to) PRESERVES_REGS(iyh, iyl); /** Moves metasprite to the absolute position x and y
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.