aboutsummaryrefslogtreecommitdiff
path: root/src/cObject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cObject.cpp')
-rw-r--r--src/cObject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cObject.cpp b/src/cObject.cpp
index 19f485f..a54d4e1 100644
--- a/src/cObject.cpp
+++ b/src/cObject.cpp
@@ -37,7 +37,7 @@ void cObject::write(cRender *_render, sPos _cameraPosition)
if (cScreen[p][o]) { //Dont overwrite empty pixels
sPos npos{ pos.x + (int)p - _cameraPosition.x,
pos.y + (int)o - _cameraPosition.y };
- _render->drawPoint(cScreen[p][o], npos, true, wColor[p][o]);
+ _render->drawPoint(cScreen[p][o], npos, wColor[p][o]);
}
}
}