Skip to content
Snippets Groups Projects

Implements #89 PNG chunking

Merged Nicolas Pope requested to merge feature/89/chunking into master
Files
2
@@ -370,7 +370,12 @@ bool Universe::send(const ftl::UUID &pid, const std::string &name, ARGS... args)
DLOG(WARNING) << "Attempting to call an unknown peer : " << pid.to_string();
return false;
}
#ifdef WIN32
return p->isConnected() && p->send(name, args...) >= 0;
#else
return p->isConnected() && p->send(name, args...) > 0;
#endif
}
/*template <typename... ARGS>
Loading