aboutsummaryrefslogtreecommitdiff
path: root/src/survive.c
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2017-02-13 01:16:05 -0500
committercnlohr <lohr85@gmail.com>2017-02-13 01:16:05 -0500
commitff7167fb8afff6633db422290864e5da302d9afb (patch)
treeeb3b679912d9d2afaf3238d91bd3df14268a9b7c /src/survive.c
parent1ffadeda2fac023741c9a828714bb4ac29fcd815 (diff)
downloadlibsurvive-ff7167fb8afff6633db422290864e5da302d9afb.tar.gz
libsurvive-ff7167fb8afff6633db422290864e5da302d9afb.tar.bz2
Update disambiguator. I think I got it right this time, finally. Also, seems to output OOTX data pretty good.
Diffstat (limited to 'src/survive.c')
-rw-r--r--src/survive.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/survive.c b/src/survive.c
index af4d804..ed18da2 100644
--- a/src/survive.c
+++ b/src/survive.c
@@ -8,7 +8,7 @@
#include <jsmn.h>
#include <string.h>
#include <zlib.h>
-#include "disambiguator.h"
+
static int jsoneq(const char *json, jsmntok_t *tok, const char *s) {
if (tok->type == JSMN_STRING && (int) strlen(s) == tok->end - tok->start &&
@@ -147,21 +147,10 @@ struct SurviveContext * survive_init()
ctx->headset.ctx = ctx;
memcpy( ctx->headset.codename, "HMD", 4 );
-#ifndef USE_OLD_DISAMBIGUATOR
- ctx->headset.d = calloc( 1, sizeof( struct disambiguator ) );
-#endif
-
ctx->watchman[0].ctx = ctx;
memcpy( ctx->watchman[0].codename, "WM0", 4 );
-#ifndef USE_OLD_DISAMBIGUATOR
- ctx->watchman[0].d = calloc( 1, sizeof( struct disambiguator ) );
-#endif
-
ctx->watchman[1].ctx = ctx;
memcpy( ctx->watchman[1].codename, "WM1", 4 );
-#ifndef USE_OLD_DISAMBIGUATOR
- ctx->watchman[1].d = calloc( 1, sizeof( struct disambiguator ) );
-#endif
//USB must happen last.
if( r = survive_usb_init( ctx ) )