mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 11:29:50 +02:00
fix warning about malformed case statement
This commit is contained in:
parent
92d39b3c47
commit
9d2758ee14
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ int packArithmeticallyCodedValue(int value, char* destination) {
|
||||||
|
|
||||||
PacketVersion versionForPacketType(PacketType type) {
|
PacketVersion versionForPacketType(PacketType type) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
PacketTypeAvatarData:
|
case PacketTypeAvatarData:
|
||||||
return 1;
|
return 1;
|
||||||
case PacketTypeParticleData:
|
case PacketTypeParticleData:
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in a new issue