Network: Remove NETWORK_SEND_DOUBLE_SEED define

This commit is contained in:
Jonathan G Rennison
2023-08-28 13:18:36 +01:00
parent ee4e82c1b6
commit 8e755bf0c2
6 changed files with 6 additions and 49 deletions

View File

@@ -21,10 +21,8 @@ struct DesyncDeferredSaveInfo {
struct DesyncExtraInfo {
enum Flags {
DEIF_NONE = 0, ///< no flags
DEIF_RAND1 = 1 << 0, ///< random 1 mismatch
DEIF_RAND2 = 1 << 1, ///< random 2 mismatch
DEIF_STATE = 1 << 2, ///< state mismatch
DEIF_DBL_RAND = 1 << 3, ///< double-seed sent
DEIF_RAND = 1 << 0, ///< random mismatch
DEIF_STATE = 1 << 1, ///< state mismatch
};
Flags flags = DEIF_NONE;