summaryrefslogtreecommitdiff
path: root/src/newgrf.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2012-09-21 09:47:21 +0000
committeralberth <alberth@openttd.org>2012-09-21 09:47:21 +0000
commit0849fb8d36160edb163eeea563b050b3ce641edc (patch)
treec553d65c51bc5bf5553c04981b7629bf9f909df1 /src/newgrf.cpp
parent89988c616329a132c20a6ba79646ad8a127d8658 (diff)
downloadopenttd-0849fb8d36160edb163eeea563b050b3ce641edc.tar.xz
(svn r24535) -Doc: Two additions, lots of small spelling fixes, and some Doxygen improvements.
Diffstat (limited to 'src/newgrf.cpp')
-rw-r--r--src/newgrf.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp
index 0a5fb30a7..89e5a1c5a 100644
--- a/src/newgrf.cpp
+++ b/src/newgrf.cpp
@@ -58,7 +58,7 @@
*
* Contains portions of documentation by TTDPatch team.
* Thanks especially to Josef Drexler for the documentation as well as a lot
- * of help at #tycoon. Also thanks to Michael Blunck for is GRF files which
+ * of help at #tycoon. Also thanks to Michael Blunck for his GRF files which
* served as subject to the initial testing of this codec. */
/** List of all loaded GRF files */
@@ -284,7 +284,7 @@ static const uint MAX_STATIONS = 256;
/** Temporary engine data used when loading only */
struct GRFTempEngineData {
- /** Summary state of refitability properties */
+ /** Summary state of refittability properties */
enum Refittability {
UNSET = 0, ///< No properties assigned. Default refit masks shall be activated.
EMPTY, ///< GRF defined vehicle as not-refittable. The vehicle shall only carry the default cargo.
@@ -1970,7 +1970,7 @@ static ChangeInfoResult CanalChangeInfo(uint id, int numinfo, int prop, ByteRead
ChangeInfoResult ret = CIR_SUCCESS;
if (id + numinfo > CF_END) {
- grfmsg(1, "CanalChangeInfo: Canal feature %u is invalid, max %u, ignoreing", id + numinfo, CF_END);
+ grfmsg(1, "CanalChangeInfo: Canal feature %u is invalid, max %u, ignoring", id + numinfo, CF_END);
return CIR_INVALID_ID;
}