[Scummvm-git-logs] scummvm master -> 1cb60d485ec2696be44e5b578b2e2835cec75e08
mduggan
noreply at scummvm.org
Sat Jul 13 11:12:30 UTC 2024
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
1cb60d485e TETRAEDGE: Remove deprecated call warning
Commit: 1cb60d485ec2696be44e5b578b2e2835cec75e08
https://github.com/scummvm/scummvm/commit/1cb60d485ec2696be44e5b578b2e2835cec75e08
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2024-07-13T21:11:43+10:00
Commit Message:
TETRAEDGE: Remove deprecated call warning
Changed paths:
engines/tetraedge/te/te_image.cpp
diff --git a/engines/tetraedge/te/te_image.cpp b/engines/tetraedge/te/te_image.cpp
index 29a37a1a5ca..cbc673a6876 100644
--- a/engines/tetraedge/te/te_image.cpp
+++ b/engines/tetraedge/te/te_image.cpp
@@ -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");
}
More information about the Scummvm-git-logs
mailing list