From 7e6a51cdfa4dc8535654b0b16506fdf0274da2f0 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Wed, 18 Dec 2013 13:56:27 -0500 Subject: [PATCH] Hotfix: fix compiling Also an attempt to fix my git problems --- SConscript | 16 ++++++++-------- src/simulation/elements/WIFI.cpp | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/SConscript b/SConscript index 6be7c5802..4d4405a7f 100755 --- a/SConscript +++ b/SConscript @@ -185,14 +185,14 @@ if not GetOption("macosx"): raise SystemExit(1) else: env.Append(CPPPATH=[GetOption("lua-dir")]) - else: - try: - env.ParseConfig('pkg-config --cflags lua5.1') - except: - #Check for Lua lib - if not conf.CheckLib('lua5.1') and not conf.CheckLib('lua-5.1') and not conf.CheckLib('lua51') and not conf.CheckLib('lua'): - print "liblua5.1 not found or not installed" - raise SystemExit(1) + try: + env.ParseConfig('pkg-config --cflags lua5.1') + env.ParseConfig('pkg-config --libs lua5.1') + except: + #Check for Lua lib + if not conf.CheckLib('lua5.1') and not conf.CheckLib('lua-5.1') and not conf.CheckLib('lua51') and not conf.CheckLib('lua'): + print "liblua5.1 not found or not installed" + raise SystemExit(1) # if fft is enabled try to parse its config, fail otherwise. diff --git a/src/simulation/elements/WIFI.cpp b/src/simulation/elements/WIFI.cpp index e6d41f61c..11909489e 100644 --- a/src/simulation/elements/WIFI.cpp +++ b/src/simulation/elements/WIFI.cpp @@ -73,7 +73,7 @@ int Element_WIFI::update(UPDATE_FUNC_ARGS) } else { - if ((r&0xFF)==PT_SPRK && parts[r>>8].ctype!=PT_NSCN && parts[r>>8].life>=3) + if ((r&0xFF)==PT_SPRK && parts[r>>8].ctype!=PT_NSCN && parts[r>>8].life==3) { sim->wireless[parts[i].tmp][1] = 1; sim->ISWIRE = 2;