diff options
author | pommicket <pommicket@gmail.com> | 2023-09-07 19:30:51 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-09-07 22:50:11 -0400 |
commit | c7f323bf733160016247368883a58a9d467468b4 (patch) | |
tree | 6807738d64f94b9e0b5c136e6eb31f941fe7928d /config.c | |
parent | 5cad1bee9b72610d9d97b5f97e7f1a245a2d2ba5 (diff) |
move color-related functions from util.c to color.c
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1310,7 +1310,7 @@ u32 settings_color(const Settings *settings, ColorSetting color) { } void settings_color_floats(const Settings *settings, ColorSetting color, float f[4]) { - rgba_u32_to_floats(settings_color(settings, color), f); + color_u32_to_floats(settings_color(settings, color), f); } |