Skip to content
Snippets Groups Projects
Commit 1ab8dfcc authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Changed error print

parent 6a4194ee
No related branches found
No related tags found
No related merge requests found
......@@ -192,7 +192,7 @@ void Layer::setObjectState(int objectIndex, int state) {
bool Layer::setAllObjectStates(std::vector<ObjectMetadata> data) {
if (data.size() != numObjects()) {
std::cerr << "Size mismatch in Object States Update" << std::endl;
std::cerr << "Size mismatch in Object States Update: Loaded " << data.size() << ", expected " << numObjects() << std::endl;
return false;
}
for (size_t objectIndex = 0; objectIndex < data.size(); ++objectIndex) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment