mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2026-09-10 08:06:16 -04:00
Fixed and working with MSVC 32-bit
This commit is contained in:
+5
-1
@@ -101,9 +101,9 @@ bool CubicSDR::OnInit() {
|
||||
// t_SDR = new std::thread(&SDRThread::threadMain, sdrThread);
|
||||
sdrEnum = new SDREnumerator();
|
||||
|
||||
t_SDREnum = new std::thread(&SDREnumerator::threadMain, sdrEnum);
|
||||
|
||||
appframe = new AppFrame();
|
||||
t_SDREnum = new std::thread(&SDREnumerator::threadMain, sdrEnum);
|
||||
|
||||
//#ifdef __APPLE__
|
||||
// int main_policy;
|
||||
@@ -499,3 +499,7 @@ std::string CubicSDR::getNotification() {
|
||||
void CubicSDR::setDeviceSelectorClosed() {
|
||||
deviceSelectorOpen.store(false);
|
||||
}
|
||||
|
||||
bool CubicSDR::isDeviceSelectorOpen() {
|
||||
return deviceSelectorOpen.load();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user