aboutsummaryrefslogtreecommitdiff
path: root/src/survive_cal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/survive_cal.c')
-rwxr-xr-xsrc/survive_cal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/survive_cal.c b/src/survive_cal.c
index 36e0a31..faf2ac7 100755
--- a/src/survive_cal.c
+++ b/src/survive_cal.c
@@ -81,7 +81,7 @@ void ootx_packet_clbk_d(ootx_decoder_context *ct, ootx_packet* packet)
config_set_lighthouse(ctx->lh_config,b,id);
lighthouses_completed++;
- if (lighthouses_completed >= NUM_LIGHTHOUSES) {
+ if (lighthouses_completed >= ctx->activeLighthouses) {
config_save(ctx, survive_configs(ctx, "configfile", SC_GET, "config.json"));
}
}
@@ -224,7 +224,7 @@ void survive_cal_light( struct SurviveObject * so, int sensor_id, int acode, int
ootx_pump_bit( &cd->ootx_decoders[lhid], dbit );
}
int i;
- for( i = 0; i < NUM_LIGHTHOUSES; i++ )
+ for( i = 0; i < ctx->activeLighthouses; i++ )
if( ctx->bsd[i].OOTXSet == 0 ) break;
if( i == ctx->activeLighthouses ) cd->stage = 2; //TODO: Make this configuratble to allow single lighthouse.
}