[Scummvm-git-logs] scummvm master -> 21c3a37138190f0d4f05b54a52f6aaee22f0d39e
mduggan
noreply at scummvm.org
Thu Feb 23 04:17:46 UTC 2023
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:
21c3a37138 TETRAEDGE: Remove unused fields
Commit: 21c3a37138190f0d4f05b54a52f6aaee22f0d39e
https://github.com/scummvm/scummvm/commit/21c3a37138190f0d4f05b54a52f6aaee22f0d39e
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2023-02-23T13:17:33+09:00
Commit Message:
TETRAEDGE: Remove unused fields
Changed paths:
engines/tetraedge/te/te_3d_texture.cpp
engines/tetraedge/te/te_3d_texture.h
diff --git a/engines/tetraedge/te/te_3d_texture.cpp b/engines/tetraedge/te/te_3d_texture.cpp
index 9d9576649ba..cedcfbdb6e0 100644
--- a/engines/tetraedge/te/te_3d_texture.cpp
+++ b/engines/tetraedge/te/te_3d_texture.cpp
@@ -28,10 +28,10 @@
namespace Tetraedge {
-Te3DTexture::Te3DTexture() : _createdTexture(false),
-_numFrames(1), _frameRate(0), _format(TeImage::INVALID), _loaded(false),
-_width(0), _height(0), _texHeight(0), _texWidth(0), _topBorder(0), _leftBorder(0),
-_rightBorder(0), _btmBorder(0), _flipY(false), _alphaOnly(false) {
+Te3DTexture::Te3DTexture() : _createdTexture(false), _format(TeImage::INVALID),
+_loaded(false), _width(0), _height(0), _texHeight(0), _texWidth(0),
+_topBorder(0), _leftBorder(0), _rightBorder(0), _btmBorder(0),
+_flipY(false), _alphaOnly(false) {
}
Te3DTexture::~Te3DTexture() {
diff --git a/engines/tetraedge/te/te_3d_texture.h b/engines/tetraedge/te/te_3d_texture.h
index a1ef6c31bcc..fb5b6b3da6f 100644
--- a/engines/tetraedge/te/te_3d_texture.h
+++ b/engines/tetraedge/te/te_3d_texture.h
@@ -71,8 +71,6 @@ public:
protected:
uint _width;
uint _height;
- int _numFrames;
- int _frameRate;
TeImage::Format _format;
bool _createdTexture;
bool _loaded;
More information about the Scummvm-git-logs
mailing list