Removing non-ASCII chars from source code

svn-id: r27818
This commit is contained in:
Max Horn 2007-07-01 12:47:07 +00:00
parent d2189e7111
commit e2ad271bd8
13 changed files with 18 additions and 32 deletions

View file

@ -177,12 +177,12 @@ int loadSavegameData(int saveGameIdx) {
fileHandle = fopen(buffer, "rb");
if (!fileHandle) {
printInfoBlackBox("Sauvegarde non trouvée...");
printInfoBlackBox("Savegame not found...");
waitForPlayerInput();
return (-1);
}
printInfoBlackBox("Chargement en cours...");
printInfoBlackBox("Loading in progress...");
fread(saveIdentBuffer, 6, 1, fileHandle);