| 84 | } |
| 85 | |
| 86 | sp<VoxelSlice> LOFTemps::getSlice(unsigned int idx) |
| 87 | { |
| 88 | if (idx >= this->slices.size()) |
| 89 | { |
| 90 | LogError("Requested slice %d - only %zu in file", idx, this->slices.size()); |
| 91 | return nullptr; |
| 92 | } |
| 93 | return this->slices[idx]; |
| 94 | } |
| 95 | |
| 96 | }; // namespace OpenApoc |