mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-24 19:45:07 +00:00
WINTERMUTE: Fix incorrect reversion of code in BaseRenderOSystem::drawLine()
This commit is contained in:
parent
03634d0833
commit
338c88e5c2
@ -484,10 +484,10 @@ void BaseRenderOSystem::drawFromSurface(RenderTicket *ticket, Common::Rect *dstR
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
bool BaseRenderOSystem::drawLine(int x1, int y1, int x2, int y2, uint32 color) {
|
||||
static bool hasWarned = false; // TODO: Fix this, this only avoids spamming warnings for now.
|
||||
if (!_disableDirtyRects && !hasWarned) {
|
||||
warning("BaseRenderOSystem::DrawLine - doesn't work for dirty rects yet");
|
||||
hasWarned = true;
|
||||
// This function isn't used outside of indicator-displaying, and thus quite unused in
|
||||
// BaseRenderOSystem when dirty-rects are enabled.
|
||||
if (!_disableDirtyRects && !_indicatorDisplay) {
|
||||
error("BaseRenderOSystem::DrawLine - doesn't work for dirty rects yet");
|
||||
}
|
||||
|
||||
byte r = RGBCOLGetR(color);
|
||||
|
Loading…
x
Reference in New Issue
Block a user