mirror of
https://github.com/OpenTTD/OpenTTD
synced 2025-12-16 18:02:13 +01:00
Codefix 6f52a977a8: GRFConfigFlag was given enum class naming without being enum class. (#14884)
This commit is contained in:
@@ -17,7 +17,7 @@
|
|||||||
#include "3rdparty/md5/md5.h"
|
#include "3rdparty/md5/md5.h"
|
||||||
|
|
||||||
/** GRF config bit flags */
|
/** GRF config bit flags */
|
||||||
enum GRFConfigFlag : uint8_t {
|
enum class GRFConfigFlag : uint8_t {
|
||||||
System, ///< GRF file is an openttd-internal system grf
|
System, ///< GRF file is an openttd-internal system grf
|
||||||
Unsafe, ///< GRF file is unsafe for static usage
|
Unsafe, ///< GRF file is unsafe for static usage
|
||||||
Static, ///< GRF file is used statically (can be used in any MP game)
|
Static, ///< GRF file is used statically (can be used in any MP game)
|
||||||
|
|||||||
Reference in New Issue
Block a user