Changeset - r28262:fd40c78e1cbc
[Not reviewed]
master
0 1 0
Peter Nelson - 12 months ago 2023-12-07 18:30:09
peter1138@openttd.org
Fix: Ensure saveload type match variable type.

This either changes the saveload definition or changes the variable depending on which makes more sense.
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/settings_type.h
Show inline comments
 
@@ -64,14 +64,14 @@ enum IndustryDensity {
 
};
 

	
 
/** Possible values for "use_relay_service" setting. */
 
enum UseRelayService {
 
enum UseRelayService : uint8_t {
 
	URS_NEVER = 0,
 
	URS_ASK,
 
	URS_ALLOW,
 
};
 

	
 
/** Possible values for "participate_survey" setting. */
 
enum ParticipateSurvey {
 
enum ParticipateSurvey : uint8_t {
 
	PS_ASK = 0,
 
	PS_NO,
 
	PS_YES,
0 comments (0 inline, 0 general)