[Scummvm-git-logs] scummvm master -> 9516e5085946bc086fef41f7d635210ed7ba76ed
sev-
noreply at scummvm.org
Sun Sep 8 14:24:03 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:
9516e50859 QDENGINE: Fix wrong call in qdAnimation::redraw(scale)
Commit: 9516e5085946bc086fef41f7d635210ed7ba76ed
https://github.com/scummvm/scummvm/commit/9516e5085946bc086fef41f7d635210ed7ba76ed
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2024-09-08T16:23:38+02:00
Commit Message:
QDENGINE: Fix wrong call in qdAnimation::redraw(scale)
Changed paths:
engines/qdengine/qdcore/qd_animation.cpp
diff --git a/engines/qdengine/qdcore/qd_animation.cpp b/engines/qdengine/qdcore/qd_animation.cpp
index 82a4a06d492..e3d345295fd 100644
--- a/engines/qdengine/qdcore/qd_animation.cpp
+++ b/engines/qdengine/qdcore/qd_animation.cpp
@@ -180,7 +180,7 @@ void qdAnimation::redraw(int x, int y, int z, float scale, int mode) const {
scaled_frame = get_scaled_frame(get_cur_frame_number(), scale_index);
if (scaled_frame)
- scaled_frame->redraw_rot(x, y, z, scale, mode);
+ scaled_frame->redraw(x, y, z, scale, mode);
}
}
More information about the Scummvm-git-logs
mailing list