comment changed

main
Selim Eser 2024-06-15 02:27:27 +02:00
parent b1283e4990
commit f3ef19801f
1 changed files with 1 additions and 1 deletions

View File

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