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];