diff --git a/.ignore b/.ignore new file mode 100644 index 0000000..c2ed135 --- /dev/null +++ b/.ignore @@ -0,0 +1 @@ +thirdparty/ diff --git a/compile_flags.txt b/compile_flags.txt new file mode 100644 index 0000000..a7162b7 --- /dev/null +++ b/compile_flags.txt @@ -0,0 +1,7 @@ +-Ithirdparty +-Ithirdparty/minilzo +-Ithirdparty/enet/include +-Ithirdparty/Chipmunk2D/include/chipmunk +-Ithirdparty/Chipmunk2D/include +-Ithirdparty/opus/include +-Ithirdparty/opus/src \ No newline at end of file diff --git a/flight.rdbg b/flight.rdbg new file mode 100644 index 0000000..cb9853c Binary files /dev/null and b/flight.rdbg differ diff --git a/main.c b/main.c index 99bd53b..d7517a2 100644 --- a/main.c +++ b/main.c @@ -1811,6 +1811,9 @@ void event(const sapp_event *e) Log("Funval %f\n", funval); } break; + default: + { + } } } diff --git a/types.h b/types.h index 9775e19..80a5394 100644 --- a/types.h +++ b/types.h @@ -307,7 +307,7 @@ static float rotangle(enum CompassRotation rot) typedef struct OpusPacket { opus_int32 length; - char data[VOIP_PACKET_MAX_SIZE]; + unsigned char data[VOIP_PACKET_MAX_SIZE]; } OpusPacket; typedef struct ServerToClient