summaryrefslogtreecommitdiff
path: root/oldloader.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-03-09 20:37:51 +0000
committerpeter1138 <peter1138@openttd.org>2006-03-09 20:37:51 +0000
commitfca58232381453f503ed9d92b40fd65c3c57bdb6 (patch)
tree061684b960a2757bd9c019a34af1bd45b36d85b5 /oldloader.c
parentee03f15f277645cf5b6a56f51b591a574d43e993 (diff)
downloadopenttd-fca58232381453f503ed9d92b40fd65c3c57bdb6.tar.xz
(svn r3805) - [FS#62] Fix doxygen comments to refer to the correct parameter. (sulai)
Diffstat (limited to 'oldloader.c')
-rw-r--r--oldloader.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/oldloader.c b/oldloader.c
index 76fb79de9..b786f321c 100644
--- a/oldloader.c
+++ b/oldloader.c
@@ -44,12 +44,12 @@ typedef struct LoadgameState {
typedef bool OldChunkProc(LoadgameState *ls, int num);
typedef struct OldChunks {
- uint32 type; //! Type of field
- uint32 amount; //! Amount of fields
+ uint32 type; ///< Type of field
+ uint32 amount; ///< Amount of fields
- void *ptr; //! Pointer where to save the data (may only be set if offset is 0)
- uint offset; //! Offset from basepointer (may only be set if ptr is NULL)
- OldChunkProc *proc; //! Pointer to function that is called with OC_CHUNK
+ void *ptr; ///< Pointer where to save the data (may only be set if offset is 0)
+ uint offset; ///< Offset from basepointer (may only be set if ptr is NULL)
+ OldChunkProc *proc; ///< Pointer to function that is called with OC_CHUNK
} OldChunks;
/* OldChunk-Type */