aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/windows.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-02-17 14:32:42 -0800
committerPaul Gilbert2019-02-17 14:32:56 -0800
commit8fcf009668c6975fbe8e7eac2e676f9aa1f87421 (patch)
tree97165cefa4670e643ef42ce33bf873a78cb819a8 /engines/glk/frotz/windows.cpp
parent046f65a2c4cb38848fdbde6e89a2c2b3f7d4666c (diff)
downloadscummvm-rg350-8fcf009668c6975fbe8e7eac2e676f9aa1f87421.tar.gz
scummvm-rg350-8fcf009668c6975fbe8e7eac2e676f9aa1f87421.tar.bz2
scummvm-rg350-8fcf009668c6975fbe8e7eac2e676f9aa1f87421.zip
GLK: FROTZ: More properly fix transparency handling of header
Diffstat (limited to 'engines/glk/frotz/windows.cpp')
-rw-r--r--engines/glk/frotz/windows.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/frotz/windows.cpp b/engines/glk/frotz/windows.cpp
index cbc0682de7..71f6fb98ea 100644
--- a/engines/glk/frotz/windows.cpp
+++ b/engines/glk/frotz/windows.cpp
@@ -118,14 +118,14 @@ void Window::setPosition(const Point &newPos) {
_win->setPosition(Point((newPos.x - 1) * g_conf->_monoInfo._cellW, (newPos.y - 1) * g_conf->_monoInfo._cellH));
}
-const zword &Window::getProperty(WindowProperty propType) {
+const uint &Window::getProperty(WindowProperty propType) {
if (_win)
update();
return _properties[propType];
}
-void Window::setProperty(WindowProperty propType, zword value) {
+void Window::setProperty(WindowProperty propType, uint value) {
switch (propType) {
case TRUE_FG_COLOR:
case TRUE_BG_COLOR: