From c0f491d473232740cf6c7e65abc997be756f1f46 Mon Sep 17 00:00:00 2001 From: Luis Hahn Date: Thu, 8 Feb 2024 12:10:14 +0100 Subject: [PATCH] =?UTF-8?q?refactoring:=20=C3=9Cbersetzung=20auf=20englisc?= =?UTF-8?q?h=20fertig,=20Luis=20Hahn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Misc.c | 2 +- src/Speichern.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Misc.c b/src/Misc.c index 8440dbb..6e9cd6f 100644 --- a/src/Misc.c +++ b/src/Misc.c @@ -32,7 +32,7 @@ void anzahl_Zuege(char** brett, Player player) { } } else { - printf("Spieler Weiß hat %d Züge gebraucht und Spieler Schwarz %d!\n"); + printf("Player White took %d moves, and Player Black took %d moves!\n"); } } diff --git a/src/Speichern.c b/src/Speichern.c index 8d1756e..b8f4fb6 100644 --- a/src/Speichern.c +++ b/src/Speichern.c @@ -11,7 +11,7 @@ void speichern_spielstand_historie(int** Historie, int anzahl_Zuege, const char* FILE* datei = fopen(dateiName, "wb"); if (datei == NULL) { - printf("Fehler beim Öffnen der Datei zum Speichern.\n"); + printf("Error opening the file for saving.\n"); return; } @@ -29,7 +29,7 @@ int laden_spielstand_historie(int*** Historie, int* anzahl_Zuege, const char* da FILE* datei = fopen(dateiName, "rb"); if (datei == NULL) { - printf("Fehler beim Öffnen der Datei zum Laden.\n"); + printf("Error opening the file for loading.\n"); return 0; // Rückgabewert 0 bedeutet Fehler } @@ -40,7 +40,7 @@ int laden_spielstand_historie(int*** Historie, int* anzahl_Zuege, const char* da *Historie = (int**)malloc((*anzahl_Zuege + 1) * sizeof(int*)); if (*Historie == NULL) { - printf("Fehler bei der Speicherzuweisung.\n"); + printf("Error allocating memory.\n"); fclose(datei); return 0; } @@ -58,7 +58,7 @@ void speichern_spielstand_schachbrett(char** Brett, const char* dateiName){ FILE* datei = fopen(dateiName, "wb"); if (datei == NULL) { - printf("Fehler beim Öffnen der Datei zum Speichern.\n"); + printf("Error opening the file for saving.\n"); return; }