Fixed crash when starting with no source

pull/36/head
Ryzerth 2020-07-20 18:18:08 +02:00
rodzic 1a42421d92
commit e364ebac6d
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -18,6 +18,9 @@ namespace io {
}
void start() {
if (devList.size() == 0) {
return;
}
if (running) {
return;
}