mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
Fixed typo
This commit is contained in:
parent
3369a2747c
commit
3089043b07
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue