summaryrefslogtreecommitdiff
path: root/src/saveload
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-11-20 13:33:24 +0000
committeralberth <alberth@openttd.org>2010-11-20 13:33:24 +0000
commit9d899b3758ee007fdd66b383cf5866133dfa5135 (patch)
treee609ec9db85382602c0d30eeb689ab055860cef3 /src/saveload
parentffa437a6c131243e9f797f4cc9164480b6aa38ac (diff)
downloadopenttd-9d899b3758ee007fdd66b383cf5866133dfa5135.tar.xz
(svn r21267) -Doc: Typo fixes.
Diffstat (limited to 'src/saveload')
-rw-r--r--src/saveload/saveload.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/saveload/saveload.cpp b/src/saveload/saveload.cpp
index c84d69bfc..8e80ed789 100644
--- a/src/saveload/saveload.cpp
+++ b/src/saveload/saveload.cpp
@@ -245,7 +245,7 @@ enum NeedLength {
NL_CALCLENGTH = 2, ///< need to calculate the length
};
-/** The saveload struct, containing reader-writer functions, bufffer, version, etc. */
+/** The saveload struct, containing reader-writer functions, buffer, version, etc. */
struct SaveLoadParams {
SaveLoadAction action; ///< are we doing a save or a load atm.
NeedLength need_length; ///< working in NeedLength (Autolength) mode?
@@ -271,7 +271,7 @@ struct SaveLoadParams {
FILE *fh; ///< the file from which is read or written to
void (*excpt_uninit)(); ///< the function to execute on any encountered error
- StringID error_str; ///< the translateable error message to show
+ StringID error_str; ///< the translatable error message to show
char *extra_msg; ///< the error message
};