makefile tippfehler & main.c dimension angepasst

This commit is contained in:
Jonas Urban 2025-10-21 23:19:40 +02:00
parent ddfcc33563
commit bab68bb04b
4 changed files with 5 additions and 2 deletions

BIN
.DS_Store vendored

Binary file not shown.

3
.gitignore vendored
View File

@ -16,3 +16,6 @@ I2_Wortsalat/.idea/modules.xml
I2_Wortsalat/Start_Mac/main.o I2_Wortsalat/Start_Mac/main.o
I2_Wortsalat/Start_Mac/.DS_Store I2_Wortsalat/Start_Mac/.DS_Store
I2_Wortsalat/Start_Mac/.DS_Store I2_Wortsalat/Start_Mac/.DS_Store
I2_Wortsalat/Start_Mac/wordsalad
I2_Wortsalat/Start_Mac/graphicalGame.o
.DS_Store

View File

@ -40,7 +40,7 @@ int main(int argc, char *argv[])
if(placedWords == wordCount) if(placedWords == wordCount)
{ {
printf("Eingabe war erfolgreich!\nDas Spiel beginnt:"); printf("Eingabe war erfolgreich!\nDas Spiel beginnt:");
startGame(wordSalad, SALAD_SIZE, words, wordCount, SALAD_SIZE); startGame(wordSalad, SALAD_SIZE, words, wordCount, 800);
} }
else else
{ {

View File

@ -29,7 +29,7 @@ game.o: game.c
$(CC) -c $(CFLAGS) game.c $(CC) -c $(CFLAGS) game.c
graphicalGame.o: graphicalGame.c graphicalGame.o: graphicalGame.c
$(CC) -I$(raylibfolder) -c $(CFLAGS) graphicalGame.c $(CC) -I$(raylib_folder) -c $(CFLAGS) graphicalGame.c
# -------------------------- # --------------------------