16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-20 03:19:19 +02:00
This commit is contained in:
milek7
2018-12-03 23:12:33 +01:00
parent 18ad14bc53
commit f525a77e23
13 changed files with 386 additions and 5 deletions

View File

@@ -138,6 +138,9 @@ eu07_application::init( int Argc, char *Argv[] ) {
return result;
}
if (!init_network())
return -1;
return result;
}
@@ -173,6 +176,8 @@ eu07_application::run() {
}
Timer::subsystem.mainloop_total.stop();
m_network->poll();
}
return 0;
@@ -585,3 +590,8 @@ eu07_application::init_modes() {
return 0;
}
bool eu07_application::init_network() {
m_network.emplace();
return true;
}