summaryrefslogtreecommitdiff
path: root/include/color.h
diff options
context:
space:
mode:
authorfig02 <fig02srl@gmail.com>2020-06-17 15:44:22 -0400
committerGitHub <noreply@github.com>2020-06-17 15:44:22 -0400
commit67d13fe19010cd7e54c09154022e5d664dc1c254 (patch)
treeeb6a305bf126ef5f85133ca31f09acd6f9325891 /include/color.h
parent494062167935a814744202e9a508489b2e109e28 (diff)
Arms_Hook OK (#210)
* Arms_Hook OK * cleanup * decr * remove redundant include * missed some things * rename things Co-authored-by: dark-samus <mathmcclintic@gmail.com>
Diffstat (limited to 'include/color.h')
-rw-r--r--include/color.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/color.h b/include/color.h
index c809ed17d..272403825 100644
--- a/include/color.h
+++ b/include/color.h
@@ -1,11 +1,8 @@
#ifndef _COLOR_H_
#define _COLOR_H_
-typedef union {
- struct {
- u8 r, g, b;
- };
- u32 rgb;
+typedef struct {
+ u8 r, g, b;
} Color_RGB8;
typedef union {