git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

commit e9629407a5d64a9fa3b65edec8f0f05727248d6f
parent cdc3321c3613911d3e91a8f7c5713461466bb47e
Author: Lior Halphon <LIJI32@gmail.com>
Date:   Sun, 19 Dec 2021 00:54:29 +0200

Fix potential alignment issues

Diffstat:
MCore/gb.h2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Core/gb.h b/Core/gb.h @@ -782,7 +782,7 @@ struct GB_gameboy_internal_s { #ifndef GB_INTERNAL struct GB_gameboy_s { - char __internal[sizeof(struct GB_gameboy_internal_s)]; + _Alignas(struct GB_gameboy_internal_s) uint8_t __internal[sizeof(struct GB_gameboy_internal_s)]; }; #endif

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