mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
Fixing GrCalcScreenUpdates incorrect size passed to MemCopy
This commit is contained in:
parent
f8c9845026
commit
b08c10e343
1 changed files with 1 additions and 1 deletions
|
@ -384,7 +384,7 @@ U0 GrCalcScreenUpdates()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
MemCopy(gr.screen_cache, screen, diffs_size * 2);
|
MemCopy(gr.screen_cache, screen, diffs_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
U0 GrUpdateScreen32()
|
U0 GrUpdateScreen32()
|
||||||
|
|
Loading…
Reference in a new issue