Changeset - r23269:0ff1cc4177d3
[Not reviewed]
master
0 2 0
Niels Martin Hansen - 5 years ago 2019-01-27 14:35:12
nielsm@indvikleren.dk
Codechange: Separate gamelog revision length from network revision length
2 files changed with 4 insertions and 3 deletions:
0 comments (0 inline, 0 general)
src/gamelog_internal.h
Show inline comments
 
@@ -12,7 +12,6 @@
 
#ifndef GAMELOG_INTERNAL_H
 
#define GAMELOG_INTERNAL_H
 

	
 
#include "network/core/config.h"
 
#include "gamelog.h"
 

	
 
/** Type of logged change */
 
@@ -33,6 +32,8 @@ enum GamelogChangeType {
 
};
 

	
 

	
 
static const uint GAMELOG_REVISION_LENGTH = 15;
 

	
 
/** Contains information about one logged change */
 
struct LoggedChange {
 
	GamelogChangeType ct; ///< Type of change logged in this struct
 
@@ -42,7 +43,7 @@ struct LoggedChange {
 
			byte landscape;  ///< landscape (temperate, arctic, ...)
 
		} mode;
 
		struct {
 
			char text[NETWORK_REVISION_LENGTH]; ///< revision string, _openttd_revision
 
			char text[GAMELOG_REVISION_LENGTH]; ///< revision string, _openttd_revision
 
			uint32 newgrf;   ///< _openttd_newgrf_version
 
			uint16 slver;    ///< _sl_version
 
			byte modified;   ///< _openttd_revision_modified
src/saveload/gamelog_sl.cpp
Show inline comments
 
@@ -29,7 +29,7 @@ static const SaveLoad _glog_mode_desc[] 
 
};
 

	
 
static const SaveLoad _glog_revision_desc[] = {
 
	SLE_ARR(LoggedChange, revision.text,     SLE_UINT8,  NETWORK_REVISION_LENGTH),
 
	SLE_ARR(LoggedChange, revision.text,     SLE_UINT8,  GAMELOG_REVISION_LENGTH),
 
	SLE_VAR(LoggedChange, revision.newgrf,   SLE_UINT32),
 
	SLE_VAR(LoggedChange, revision.slver,    SLE_UINT16),
 
	SLE_VAR(LoggedChange, revision.modified, SLE_UINT8),
0 comments (0 inline, 0 general)