aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/boundingbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/bladerunner/boundingbox.cpp')
-rw-r--r--engines/bladerunner/boundingbox.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/engines/bladerunner/boundingbox.cpp b/engines/bladerunner/boundingbox.cpp
index aea2dc0a24..40b7d4285a 100644
--- a/engines/bladerunner/boundingbox.cpp
+++ b/engines/bladerunner/boundingbox.cpp
@@ -84,16 +84,4 @@ float BoundingBox::getZ1() const {
return _vertices[1].z;
}
-void BoundingBox::save(SaveFile &f) {
- f.write(_vertices[0].x);
- f.write(_vertices[0].y);
- f.write(_vertices[0].z);
- f.write(_vertices[1].x);
- f.write(_vertices[1].y);
- f.write(_vertices[1].z);
-
- // Bounding boxes have a lot of extra data that's never actually used
- f.padBytes(8*8*4);
-}
-
} // End of namespace BladeRunner