From 79a20ce714ea0a8ac2303024ee642dc49179c381 Mon Sep 17 00:00:00 2001 From: manusmac Date: Tue, 28 Oct 2025 14:58:00 +0100 Subject: [PATCH] ... --- Start_Mac/input.c | 2 +- Start_Mac/main.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Start_Mac/input.c b/Start_Mac/input.c index 6a94ca2..0dd8fca 100644 --- a/Start_Mac/input.c +++ b/Start_Mac/input.c @@ -32,7 +32,7 @@ int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount) // Wort kopieren und in Großbuchstaben umwandeln strcpy(words[wordCount], token); for (int i = 0; words[wordCount][i] != '\0'; i++) { - words[wordCount][i] = toupper((unsigned char)words[wordCount][i]); + words[wordCount][i] = toupper((unsigned char) words[wordCount][i]); } wordCount++; } diff --git a/Start_Mac/main.c b/Start_Mac/main.c index 0175942..dc63f7c 100644 --- a/Start_Mac/main.c +++ b/Start_Mac/main.c @@ -43,6 +43,7 @@ int main(int argc, char *argv[]) { // Start the game if successful startGame(wordSalad,SALAD_SIZE,words,wordCount,SALAD_SIZE); + // welche Variable wird für windowWidth gewählt? } else {