From 607f7d0e32e34a2f01feba578b6751d1754704a9 Mon Sep 17 00:00:00 2001 From: xolatile Date: Mon, 18 Mar 2024 14:40:43 -0400 Subject: Finished limiting Color to 4 bytes like Gott intended... --- raylib.ads | 3 +++ 1 file changed, 3 insertions(+) (limited to 'raylib.ads') diff --git a/raylib.ads b/raylib.ads index 6bb4a4d..e1a2e20 100644 --- a/raylib.ads +++ b/raylib.ads @@ -601,6 +601,9 @@ package Raylib is type Color_Range is range 0 .. 2**8 - 1; type Index_Range is range 0 .. 2**16 - 1; + for Color_Range'Size use 8; + for Index_Range'Size use 16; + type Pointer is access all System.Address; type Vector_2D is record -- cgit v1.2.3