From 1bd53ab62a3cd49f1e712996756f4b8138be9962 Mon Sep 17 00:00:00 2001 From: Cameron Reikes Date: Thu, 17 Nov 2022 13:01:51 -0800 Subject: [PATCH] Small changes and helix config files --- .ignore | 1 + compile_flags.txt | 7 +++++++ flight.rdbg | Bin 0 -> 676 bytes main.c | 3 +++ types.h | 2 +- 5 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .ignore create mode 100644 compile_flags.txt create mode 100644 flight.rdbg 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 0000000000000000000000000000000000000000..cb9853c441b20b76b4b26ff9005c07327f086e57 GIT binary patch literal 676 zcma)4&r3rw41V*VUOf0GcoU&Lhz#*C(D!h7b$AO%SL18h`hzA<=6`SMgn1ebq$J_{ zz9c2D!_#u!bzT1eZ-j-QHvvnEFeEz#j7;#k^`m3h&F^5q^)$lsZ$aY@Plc(JOTb0I^}zcG*NY z*8Q=pJ=aC9o1}vAQQP|_?7y~@Hfj5Aa@J0$-HG_6IMvnFq7Go#r$`r4H2aB2E#ed; fKiKRqJUf(*Mzu|gRo&USJgo$Q3%VZ5{?dK`ChfIA literal 0 HcmV?d00001 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