git.y1.nz

gbdk-2020

GameBoy Development Kit
download: https://git.y1.nz/archives/gbdk.tar.gz
README | Files | Log | Refs | LICENSE

commit 7911905141c00f37d533418eedb781b13c823a92
parent a175eee0e8487cbc651e0fa0ef38c6af2d71c038
Author: Toxa <untoxa@mail.ru>
Date:   Thu, 19 Aug 2021 13:19:00 +0300

move include/gb/incbin to include/gbdk/incbin because it is common with SMS/GG target

Diffstat:
Mgbdk-lib/examples/ap/incbin/src/main.c2+-
Mgbdk-lib/examples/gb/incbin/src/main.c2+-
Rgbdk-lib/include/gb/incbin.h -> gbdk-lib/include/gbdk/incbin.h0
3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gbdk-lib/examples/ap/incbin/src/main.c b/gbdk-lib/examples/ap/incbin/src/main.c @@ -1,7 +1,7 @@ #include <gb/gb.h> #include <stdint.h> -#include <gb/incbin.h> +#include <gbdk/incbin.h> INCBIN(logo_tiles_data, "res/gbdk2020.bin") // Variable name to use, Path to file INCBIN_EXTERN(logo_tiles_data) // Extern declarations for binary data diff --git a/gbdk-lib/examples/gb/incbin/src/main.c b/gbdk-lib/examples/gb/incbin/src/main.c @@ -1,7 +1,7 @@ #include <gb/gb.h> #include <stdint.h> -#include <gb/incbin.h> +#include <gbdk/incbin.h> INCBIN(logo_tiles_data, "res/gbdk2020.bin") // Variable name to use, Path to file INCBIN_EXTERN(logo_tiles_data) // Extern declarations for binary data diff --git a/gbdk-lib/include/gb/incbin.h b/gbdk-lib/include/gbdk/incbin.h

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.