From dc2af6a6fb7ae3cf1b9f917058889329d4652491 Mon Sep 17 00:00:00 2001 From: Mel Date: Mon, 24 Oct 2022 00:40:08 +0200 Subject: Image viewer utility --- src/GFX/Image/PPMParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/GFX/Image/PPMParser.cpp') diff --git a/src/GFX/Image/PPMParser.cpp b/src/GFX/Image/PPMParser.cpp index b809ef1..31be0ab 100644 --- a/src/GFX/Image/PPMParser.cpp +++ b/src/GFX/Image/PPMParser.cpp @@ -17,7 +17,7 @@ RawImage PPMParser::parse() { auto pixel_count = header.width * header.height; - RawImage image(pixel_count, header.width, header.height, 3); + RawImage image(header.width, header.height, 3); for (uint64_t pixel_index = 0; pixel_index < pixel_count; pixel_index++) { RawImage::Pixel pixel = parse_pixel(header.max_color); image.add(pixel); -- cgit 1.4.1