From 15280f738df228a24286781bd0d5d304e6062404 Mon Sep 17 00:00:00 2001 From: Daniel M Date: Thu, 8 Feb 2024 12:35:42 +0100 Subject: [PATCH] =?UTF-8?q?refactoring=20:=20Es=20wurden=20=C3=B6=20durch?= =?UTF-8?q?=20oe=20gewechselt,=20u=20durch=20ue.usw?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/duellist-spielesammlung-projekt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index f6f136f..bac07f6 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -331,7 +331,7 @@ int minesweeper() { return 1; } int num_mines = calculate_mines(height, width); - printf("Das spielfeld hat eine grösse von >%d< und eine breite von: >%d<.\n", height, width); + printf("Das spielfeld hat eine groesse von >%d< und eine breite von: >%d<.\n", height, width); printf("Es gibt %d Minen auf dem Spielfeld.\n", num_mines); // Matrix for the game field @@ -354,7 +354,7 @@ int minesweeper() { } // Check field boundaries if (row >= height || row < 0) { - printf("höhe zwischen 1 und %d!\n", height); + printf("hoehe zwischen 1 und %d!\n", height); continue; } if (column >= width || column < 0) { @@ -373,7 +373,7 @@ int minesweeper() { else if (end_check(minefield, mines, height, width)) { // Show the mines show_minefield(mines, height, width); - printf("Sie haben es erfolgreich gelösst!\n"); + printf("Sie haben es erfolgreich geloesst!\n"); break; } // Show current field to continue playing