mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 03:56:20 +00:00
TETRAEDGE: Fix gcc warnings
This commit is contained in:
parent
da29ae539e
commit
7293873e62
@ -221,8 +221,8 @@ TeIntrusivePtr<TeBezierCurve> TeFreeMoveZone::curve(const TeVector3f32 &startpt,
|
||||
|
||||
Common::Array<TeVector3f32> pts3d;
|
||||
// Skip first and last points, we will use the exact values.
|
||||
for (uint i = 1; i < points.size() - 1; i++) {
|
||||
pts3d.push_back(transformAStarGridInWorldSpace(points[i]));
|
||||
for (uint j = 1; j < points.size() - 1; j++) {
|
||||
pts3d.push_back(transformAStarGridInWorldSpace(points[j]));
|
||||
}
|
||||
|
||||
pts3d.front() = startpt;
|
||||
|
@ -30,6 +30,7 @@ namespace Tetraedge {
|
||||
class TeITextLayout {
|
||||
public:
|
||||
TeITextLayout();
|
||||
virtual ~TeITextLayout() {}
|
||||
|
||||
virtual void setText(const Common::String &val) = 0;
|
||||
virtual void setInterLine(float val) = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user