@@ -62,4 +62,7 @@ gfa/shm.h, gfa/mutex.h, gfa/sema.h, gfa/procmem.h, gfa/thread.h
ADC-Info für Systeme ohne Tiva. Bugfixes.
* **1.9.0**<br>
- TryLock (Mutex) implementiert.
+ TryLock (Mutex) implementiert.
+
+* **1.10.0**<br>
+ Bugfix betreffend Erkennung des Bootmediums.
@@ -1,5 +1,5 @@
TEMPLATE = lib
-VERSION = 1.9
+VERSION = 1.10
CONFIG -= qt app_bundle
CONFIG += c++11 shared thread
@@ -138,12 +138,12 @@ bool CSysInfo::GetBootInfo(bool &bootFromEMMC)
{
std::string sPart = m[1];
- if(!sPart.compare(_INTERNAL_EMMC_PART12) || sPart.compare(_INTERNAL_EMMC_PART11))
+ if(!sPart.compare(_INTERNAL_EMMC_PART12) || !sPart.compare(_INTERNAL_EMMC_PART11))
bootFromEMMC = true;
return true;
}
- else if(!sPart.compare(_INTERNAL_EMMC_PART02) || sPart.compare(_INTERNAL_EMMC_PART01))
+ else if(!sPart.compare(_INTERNAL_EMMC_PART02) || !sPart.compare(_INTERNAL_EMMC_PART01))
bootFromEMMC = false;