[Scummvm-git-logs] scummvm master -> 1fb3d61b56403de3b25b501b255d8571f92f6fa6
bluegr
bluegr at gmail.com
Fri Feb 28 06:23:25 UTC 2020
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:
1fb3d61b56 MACVENTURE: Fix compiler warnings
Commit: 1fb3d61b56403de3b25b501b255d8571f92f6fa6
https://github.com/scummvm/scummvm/commit/1fb3d61b56403de3b25b501b255d8571f92f6fa6
Author: jepael (jepael at users.noreply.github.com)
Date: 2020-02-28T08:23:21+02:00
Commit Message:
MACVENTURE: Fix compiler warnings
Changed paths:
engines/macventure/gui.h
diff --git a/engines/macventure/gui.h b/engines/macventure/gui.h
index ed2f50cf4c..4db6e5fa3e 100644
--- a/engines/macventure/gui.h
+++ b/engines/macventure/gui.h
@@ -335,7 +335,7 @@ public:
composeSurface->clear(kColorGreen);
const Graphics::Font *font = &_gui->getCurrentFont();
- uint y = target->h - font->getFontHeight();
+ int y = target->h - font->getFontHeight();
for (uint i = _scrollPos; i != 0; i--) {
font->drawString(target, _lines[i], textOffset, y, font->getStringWidth(_lines[i]), kColorBlack);
More information about the Scummvm-git-logs
mailing list