From f3ef19801f163d20b25306c39ccf4e27182ff995 Mon Sep 17 00:00:00 2001 From: Selim Eser <2211482@stud.hs-mannheim.de> Date: Sat, 15 Jun 2024 02:27:27 +0200 Subject: [PATCH] comment changed --- Aufgabe1_2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Aufgabe1_2.cpp b/Aufgabe1_2.cpp index c7bf07c..ec13923 100644 --- a/Aufgabe1_2.cpp +++ b/Aufgabe1_2.cpp @@ -65,7 +65,7 @@ public: // Speicherreservierung für die Pixeldaten pixel = new int[width * height * 3]; - // Alle Pixeldaten bestehend aus rgb in data[] speichern mit width * height * 3 für alle Wertes + // Alle Pixeldaten bestehend aus rgb in pixel[] speichern mit width * height * 3 für alle Werte for (int i = 0; i < width * height * 3; ++i) { // file speichert in data[i] file >> pixel[i];