[Scummvm-git-logs] scummvm master -> 01f6659c2087610f4bca677378a292e36d14d4d4
Strangerke
noreply at scummvm.org
Tue May 7 20:25:25 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:
01f6659c20 BAGEL: Add explicitly an update flag to true to show the cosine table is generated
Commit: 01f6659c2087610f4bca677378a292e36d14d4d4
https://github.com/scummvm/scummvm/commit/01f6659c2087610f4bca677378a292e36d14d4d4
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2024-05-07T21:25:19+01:00
Commit Message:
BAGEL: Add explicitly an update flag to true to show the cosine table is generated
Changed paths:
engines/bagel/baglib/pan_bitmap.cpp
diff --git a/engines/bagel/baglib/pan_bitmap.cpp b/engines/bagel/baglib/pan_bitmap.cpp
index 03ea7fac302..60fc4b830cc 100644
--- a/engines/bagel/baglib/pan_bitmap.cpp
+++ b/engines/bagel/baglib/pan_bitmap.cpp
@@ -90,9 +90,9 @@ CBagPanBitmap::CBagPanBitmap(const char *pszFileName, CBofPalette *pPalette, con
// Initialize _nCorrWidth and generate the cosine table.
if (_bPanorama)
- setCorrWidth(4);
+ setCorrWidth(4, true);
else
- setCorrWidth(0);
+ setCorrWidth(0, true);
_bIsValid = true;
More information about the Scummvm-git-logs
mailing list