mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-27 02:33:52 +08:00
replay/camera: fix incorrect console output (#22491)
This commit is contained in:
@@ -16,7 +16,7 @@ CameraServer::~CameraServer() {
|
||||
}
|
||||
|
||||
void CameraServer::startVipcServer() {
|
||||
std::cout << (vipc_server_ ? "start" : "restart") << " vipc server" << std::endl;
|
||||
std::cout << (vipc_server_ ? "restart" : "start") << " vipc server" << std::endl;
|
||||
vipc_server_.reset(new VisionIpcServer("camerad"));
|
||||
for (auto &cam : cameras_) {
|
||||
if (cam.width > 0 && cam.height > 0) {
|
||||
|
||||
Reference in New Issue
Block a user