diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-09-11 14:16:30 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-09-11 15:34:08 +0200 |
commit | 6e52fce98660dc9eaa832d682bf38e2ea742e5b6 (patch) | |
tree | d3b59859a2dec39c1a43d87b6836e78f127738df /src/net/WebRTCDataChannelNative.cpp | |
parent | a93af67d756e65161b81683c32fa66efd6f47ec6 (diff) | |
download | fork-godot-webrtc-native-6e52fce98660dc9eaa832d682bf38e2ea742e5b6.tar.gz fork-godot-webrtc-native-6e52fce98660dc9eaa832d682bf38e2ea742e5b6.tar.bz2 fork-godot-webrtc-native-6e52fce98660dc9eaa832d682bf38e2ea742e5b6.zip |
Update sources to alpha16
Diffstat (limited to 'src/net/WebRTCDataChannelNative.cpp')
-rw-r--r-- | src/net/WebRTCDataChannelNative.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/WebRTCDataChannelNative.cpp b/src/net/WebRTCDataChannelNative.cpp index 4639021..c594dd6 100644 --- a/src/net/WebRTCDataChannelNative.cpp +++ b/src/net/WebRTCDataChannelNative.cpp @@ -72,7 +72,7 @@ godot_int get_max_packet_size_wdc(const void *user) { } void set_write_mode_wdc(void *user, godot_int write_mode) { - ((WebRTCDataChannelNative *)user)->_set_write_mode(write_mode); + ((WebRTCDataChannelNative *)user)->_set_write_mode((godot::WebRTCDataChannel::WriteMode)write_mode); } godot_int get_write_mode_wdc(const void *user) { |