Compare commits

..

No commits in common. "41792a6c8297a23b8efe9d70302493c2334b0902" and "cf09c5233ad4b85c695c14fb0f4cf0f411aa6de2" have entirely different histories.

4 changed files with 1 additions and 5 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -44,7 +44,3 @@ test: input.o game.o unit_tests.c $(BINARIES)/libunity.a
# -------------------------- # --------------------------
clean: clean:
rm -f *.o wordsalad rm -f *.o wordsalad
wordsalad_myversion: main.o input.o game.o graphicalGame.o
$(CC) $(CFLAGS) -o wordsalad main.o input.o game.o graphicalGame.o $(BINARIES)/libraylib.a $(LDFLAGS)

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, 800); startGame(wordSalad, SALAD_SIZE, words, wordCount, SALAD_SIZE);
} }
else else
{ {