summaryrefslogtreecommitdiff
path: root/debian/patches/spelling.patch
diff options
context:
space:
mode:
authorDmitry Smirnov <onlyjob@member.fsf.org>2013-05-25 08:09:27 +1000
committerDmitry Smirnov <onlyjob@member.fsf.org>2013-05-25 08:09:27 +1000
commit49766aced1299d781db0f9b7a200472720768fe5 (patch)
tree8f6ff9bffe61ec3e21fd47faf34fd9417cfed817 /debian/patches/spelling.patch
downloadd2x-rebirth-49766aced1299d781db0f9b7a200472720768fe5.tar.gz
d2x-rebirth-49766aced1299d781db0f9b7a200472720768fe5.tar.bz2
d2x-rebirth-49766aced1299d781db0f9b7a200472720768fe5.zip
Initial commit
Diffstat (limited to 'debian/patches/spelling.patch')
-rw-r--r--debian/patches/spelling.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/debian/patches/spelling.patch b/debian/patches/spelling.patch
new file mode 100644
index 0000000..38afe63
--- /dev/null
+++ b/debian/patches/spelling.patch
@@ -0,0 +1,30 @@
+Last-Update: 2012-12-31
+Author: Dmitry Smirnov <onlyjob@member.fsf.org>
+Forwarded: no
+Description: minor spelling corrections
+
+--- a/main/inferno.c
++++ b/main/inferno.c
+@@ -117,9 +117,9 @@
+ void print_commandline_help()
+ {
+ printf( "\n System Options:\n\n");
+ printf( " -nonicefps Don't free CPU-cycles\n");
+- printf( " -maxfps <n> Set maximum framerate to <n>\n\t\t\t\t(default: %i, availble: 1-%i)\n", MAXIMUM_FPS, MAXIMUM_FPS);
++ printf( " -maxfps <n> Set maximum framerate to <n>\n\t\t\t\t(default: %i, available: 1-%i)\n", MAXIMUM_FPS, MAXIMUM_FPS);
+ printf( " -hogdir <s> set shared data directory to <s>\n");
+ printf( " -nohogdir don't try to use shared data directory\n");
+ printf( " -use_players_dir put player files and saved games in Players subdirectory\n");
+ printf( " -lowmem Lowers animation detail for better performance with\n\t\t\t\tlow memory\n");
+--- a/d2x.ini
++++ b/d2x.ini
+@@ -1,8 +1,8 @@
+ System Options:
+
+ ;-nonicefps Don't free CPU-cycles
+-;-maxfps <n> Set maximum framerate to <n> (default: 1000, availble: 1-1000)
++;-maxfps <n> Set maximum framerate to <n> (default: 1000, available: 1-1000)
+ ;-hogdir <s> set shared data directory to <s>
+ ;-nohogdir don't try to use shared data directory
+ ;-use_players_dir put player files and saved games in Players subdirectory
+ ;-lowmem Lowers animation detail for better performance with low memory
bgstack15