LibGfx: Change "white_space" => "whitespace"

Whitespace is one word. :^)
This commit is contained in:
Andreas Kling 2021-05-09 09:59:22 +02:00
commit 6998fa5c54
Notes: sideshowbarker 2024-07-18 18:28:10 +09:00
3 changed files with 9 additions and 9 deletions

View file

@ -73,7 +73,7 @@ static bool read_image_data(PGMLoadingContext& context, Streamer& streamer)
if (!read_number(streamer, &value))
break;
if (!read_white_space(context, streamer))
if (!read_whitespace(context, streamer))
break;
color_data.append({ (u8)value, (u8)value, (u8)value });