Skip to content

Commit e66498b

Browse files
committed
[WASimClient] Mark 'B' type variables as settable (for MSFS 2024).
1 parent e460925 commit e66498b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/utilities.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ namespace WASimCommander {
9090
}
9191

9292
static bool isSettableVariableType(const char type) {
93-
static const std::vector<char> VAR_TYPES_SETTABLE = { 'A', 'C', 'H', 'K', 'L', 'Z' };
93+
static const std::vector<char> VAR_TYPES_SETTABLE = { 'A', 'B', 'C', 'H', 'K', 'L', 'Z' };
9494
return find(VAR_TYPES_SETTABLE.cbegin(), VAR_TYPES_SETTABLE.cend(), type) != VAR_TYPES_SETTABLE.cend();
9595
}
9696

0 commit comments

Comments
 (0)