Compare commits

...

3 Commits

4 changed files with 5 additions and 1 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -44,3 +44,7 @@ test: input.o game.o unit_tests.c $(BINARIES)/libunity.a
# --------------------------
clean:
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)

Binary file not shown.

View File

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