Fixed typo

This commit is contained in:
Magnus Norddahl 2016-06-17 08:28:30 +02:00
parent 3369a2747c
commit 3089043b07
1 changed files with 2 additions and 2 deletions

View File

@ -173,12 +173,12 @@ public:
class DrawerCommand
{
protected:
int dc_dest_y;
int _dest_y;
public:
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;