[Scummvm-git-logs] scummvm master -> 64ae935977e762a6a2564d133626fd232b97ab39
lephilousophe
noreply at scummvm.org
Wed Oct 9 05:55:07 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:
64ae935977 TWINE: Fix int32 discrepancy
Commit: 64ae935977e762a6a2564d133626fd232b97ab39
https://github.com/scummvm/scummvm/commit/64ae935977e762a6a2564d133626fd232b97ab39
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2024-10-09T07:54:52+02:00
Commit Message:
TWINE: Fix int32 discrepancy
Changed paths:
engines/twine/debugger/debugtools.cpp
diff --git a/engines/twine/debugger/debugtools.cpp b/engines/twine/debugger/debugtools.cpp
index 97e08efc7e0..6b2c487be8d 100644
--- a/engines/twine/debugger/debugtools.cpp
+++ b/engines/twine/debugger/debugtools.cpp
@@ -369,8 +369,8 @@ static void sceneDetailsWindows(TwinEEngine *engine) {
ImGuiEx::InputInt("Talking actor", &scene->_talkingActor);
ImGuiEx::InputInt("Cube jingle", &scene->_cubeJingle);
ImGuiEx::InputIVec3("New hero pos", scene->_newHeroPos);
- ImGui::InputInt("Alpha light", &scene->_alphaLight);
- ImGui::InputInt("Beta light", &scene->_betaLight);
+ ImGuiEx::InputInt("Alpha light", &scene->_alphaLight);
+ ImGuiEx::InputInt("Beta light", &scene->_betaLight);
ImGuiEx::InputInt("Fall Y position", &scene->_startYFalling);
ImGui::Text("Hero position type: %i", (int)scene->_heroPositionType);
}
More information about the Scummvm-git-logs
mailing list