TETRAEDGE: Remove deprecated call warning

This commit is contained in:
Matthew Duggan 2024-07-13 21:10:16 +10:00
parent 9bea17e1da
commit 1cb60d485e

View File

@ -33,7 +33,8 @@ namespace Tetraedge {
TeImage::TeImage() : ManagedSurface(), _teFormat(INVALID) {
}
TeImage::TeImage(const TeImage &other) : ManagedSurface(other), _teFormat(INVALID) {
TeImage::TeImage(const TeImage &other) : ManagedSurface(), _teFormat(other._teFormat) {
copyFrom(other);
error("TODO: Implement TeImage::TeImage copy constructor");
}