mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-12 17:19:09 +00:00
Fix: Ensure saveload type match variable type.
This either changes the saveload definition or changes the variable depending on which makes more sense.
This commit is contained in:
@@ -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,
|
||||
|
Reference in New Issue
Block a user