PDA

View Full Version : Contributions / RFC



CodeWarrior
12-21-2001, 06:34 AM
In the spirit of GPL i'd like to make contributions to this great
piece of software. How do we do this?

The first thing I did was to change the Map::PaintPlayerBackground to mimic the old 3.1.2 style:

{
p.setPen(QColor (80,80,80));

QBrush tmpBrush;
tmpBrush.setColor(QColor (80,80,80));
tmpBrush.setStyle(QBrush::SolidPattern);
p.setBrush(tmpBrush);

p.setRasterOp(Qt::OrROP);
p.drawEllipse(...unchanged...);
p.setRasterOp(Qt::CopyROP);
}

I got this to run with Qt3, but i'm sure it works with Qt2 as well.

Btw, Qt3 does seem to break some code on Seq4, but i'd be
happy to work out the code, and allow you guys to concentrate
on the heavy magic backend decoding stuff... :D

Let me know what you think...