[Scummvm-git-logs] scummvm master -> 6bf87d7a0756af01026edb9b9d7e7d1c42f03acd

aquadran noreply at scummvm.org
Sat Apr 5 20:12:04 UTC 2025


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:
6bf87d7a07 PLAYGROUND3D: Fixed compilation


Commit: 6bf87d7a0756af01026edb9b9d7e7d1c42f03acd
    https://github.com/scummvm/scummvm/commit/6bf87d7a0756af01026edb9b9d7e7d1c42f03acd
Author: Paweł Kołodziejski (aquadran at gmail.com)
Date: 2025-04-05T22:11:58+02:00

Commit Message:
PLAYGROUND3D: Fixed compilation

Changed paths:
    engines/playground3d/gfx_tinygl.cpp


diff --git a/engines/playground3d/gfx_tinygl.cpp b/engines/playground3d/gfx_tinygl.cpp
index feadd111ced..2e14dfca43d 100644
--- a/engines/playground3d/gfx_tinygl.cpp
+++ b/engines/playground3d/gfx_tinygl.cpp
@@ -330,8 +330,8 @@ void TinyGLRenderer::drawInViewport() {
 	_pos.x() += 0.01f;
 	_pos.y() += 0.01f;
 	if (_pos.x() >= 1.1f) {
-		_pos.x() = -1.1;
-		_pos.y() = -1.1;
+		_pos.x() = -1.1f;
+		_pos.y() = -1.1f;
 	}
 	tglTranslatef(_pos.x(), _pos.y(), 0);
 




More information about the Scummvm-git-logs mailing list