Fixed typo

This commit is contained in:
Magnus Norddahl 2016-06-17 08:28:30 +02:00
parent 3369a2747c
commit 3089043b07

View file

@ -173,12 +173,12 @@ public:
class DrawerCommand class DrawerCommand
{ {
protected: protected:
int dc_dest_y; int _dest_y;
public: public:
DrawerCommand() DrawerCommand()
{ {
dc_dest_y = static_cast<int>((dc_dest - dc_destorg) / (dc_pitch * 4)); _dest_y = static_cast<int>((dc_dest - dc_destorg) / (dc_pitch * 4));
} }
virtual void Execute(DrawerThread *thread) = 0; virtual void Execute(DrawerThread *thread) = 0;