mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-02-01 21:51:08 +00:00
Merge pull request #141 from smcv/speling
Fix spelling errors detected by lintian
This commit is contained in:
commit
3f6ce86c18
3 changed files with 11 additions and 11 deletions
|
@ -49,7 +49,7 @@ printBacktrace(int sig)
|
||||||
|
|
||||||
printf("Product: Yamagi Quake II\n");
|
printf("Product: Yamagi Quake II\n");
|
||||||
printf("Version: %s\n", YQ2VERSION);
|
printf("Version: %s\n", YQ2VERSION);
|
||||||
printf("Plattform: %s\n", OSTYPE);
|
printf("Platform: %s\n", OSTYPE);
|
||||||
printf("Architecture: %s\n", ARCH);
|
printf("Architecture: %s\n", ARCH);
|
||||||
printf("Compiler: %s\n", __VERSION__);
|
printf("Compiler: %s\n", __VERSION__);
|
||||||
printf("Signal: %i\n", sig);
|
printf("Signal: %i\n", sig);
|
||||||
|
@ -70,7 +70,7 @@ printBacktrace(int sig)
|
||||||
{
|
{
|
||||||
printf("Product: Yamagi Quake II\n");
|
printf("Product: Yamagi Quake II\n");
|
||||||
printf("Version: %s\n", YQ2VERSION);
|
printf("Version: %s\n", YQ2VERSION);
|
||||||
printf("Plattform: %s\n", OSTYPE);
|
printf("Platform: %s\n", OSTYPE);
|
||||||
printf("Architecture: %s\n", ARCH);
|
printf("Architecture: %s\n", ARCH);
|
||||||
printf("Compiler: %s\n", __VERSION__);
|
printf("Compiler: %s\n", __VERSION__);
|
||||||
printf("Signal: %i\n", sig);
|
printf("Signal: %i\n", sig);
|
||||||
|
@ -97,7 +97,7 @@ signalhandler(int sig)
|
||||||
printf(" - game.so (the game.so of the mod you were playing\n");
|
printf(" - game.so (the game.so of the mod you were playing\n");
|
||||||
printf(" when the game crashed. baseq2/game.so for the\n");
|
printf(" when the game crashed. baseq2/game.so for the\n");
|
||||||
printf(" main game)\n\n");
|
printf(" main game)\n\n");
|
||||||
printf(" - Any other data which you think might be usefull\n");
|
printf(" - Any other data which you think might be useful\n");
|
||||||
printf("\nThank you very much for your help, making Yamagi Quake\n");
|
printf("\nThank you very much for your help, making Yamagi Quake\n");
|
||||||
printf("II an even better source port. It's much appreciated.\n");
|
printf("II an even better source port. It's much appreciated.\n");
|
||||||
printf("\n=======================================================\n\n");
|
printf("\n=======================================================\n\n");
|
||||||
|
|
|
@ -1696,7 +1696,7 @@ static const char *xatcredits[] =
|
||||||
"Chris Toft",
|
"Chris Toft",
|
||||||
"Juan Valdes",
|
"Juan Valdes",
|
||||||
"",
|
"",
|
||||||
"+THANKS TO INTERGRAPH COMPUTER SYTEMS",
|
"+THANKS TO INTERGRAPH COMPUTER SYSTEMS",
|
||||||
"+IN PARTICULAR:",
|
"+IN PARTICULAR:",
|
||||||
"",
|
"",
|
||||||
"Michael T. Nicolaou",
|
"Michael T. Nicolaou",
|
||||||
|
|
|
@ -838,17 +838,17 @@ ReadGame(const char *filename)
|
||||||
if (strcmp(str_game, GAMEVERSION))
|
if (strcmp(str_game, GAMEVERSION))
|
||||||
{
|
{
|
||||||
fclose(f);
|
fclose(f);
|
||||||
gi.error("Savegame from an other game.so.\n");
|
gi.error("Savegame from another game.so.\n");
|
||||||
}
|
}
|
||||||
else if (strcmp(str_os, OSTYPE))
|
else if (strcmp(str_os, OSTYPE))
|
||||||
{
|
{
|
||||||
fclose(f);
|
fclose(f);
|
||||||
gi.error("Savegame from an other os.\n");
|
gi.error("Savegame from another os.\n");
|
||||||
}
|
}
|
||||||
else if (strcmp(str_arch, ARCH))
|
else if (strcmp(str_arch, ARCH))
|
||||||
{
|
{
|
||||||
fclose(f);
|
fclose(f);
|
||||||
gi.error("Savegame from an other architecure.\n");
|
gi.error("Savegame from another architecture.\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (!strcmp(str_ver, "YQ2-1"))
|
else if (!strcmp(str_ver, "YQ2-1"))
|
||||||
|
@ -856,12 +856,12 @@ ReadGame(const char *filename)
|
||||||
if (strcmp(str_game, GAMEVERSION))
|
if (strcmp(str_game, GAMEVERSION))
|
||||||
{
|
{
|
||||||
fclose(f);
|
fclose(f);
|
||||||
gi.error("Savegame from an other game.so.\n");
|
gi.error("Savegame from another game.so.\n");
|
||||||
}
|
}
|
||||||
else if (strcmp(str_os, OSTYPE_1))
|
else if (strcmp(str_os, OSTYPE_1))
|
||||||
{
|
{
|
||||||
fclose(f);
|
fclose(f);
|
||||||
gi.error("Savegame from an other os.\n");
|
gi.error("Savegame from another os.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!strcmp(str_os, "Windows"))
|
if (!strcmp(str_os, "Windows"))
|
||||||
|
@ -870,7 +870,7 @@ ReadGame(const char *filename)
|
||||||
if (strcmp(str_arch, "i386"))
|
if (strcmp(str_arch, "i386"))
|
||||||
{
|
{
|
||||||
fclose(f);
|
fclose(f);
|
||||||
gi.error("Savegame from an other architecure.\n");
|
gi.error("Savegame from another architecture.\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -878,7 +878,7 @@ ReadGame(const char *filename)
|
||||||
if (strcmp(str_arch, ARCH_1))
|
if (strcmp(str_arch, ARCH_1))
|
||||||
{
|
{
|
||||||
fclose(f);
|
fclose(f);
|
||||||
gi.error("Savegame from an other architecure.\n");
|
gi.error("Savegame from another architecture.\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue