diff options
Diffstat (limited to 'src/GFX/Image/PPMParser.cpp')
| -rw-r--r-- | src/GFX/Image/PPMParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
