1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-31 01:42:02 +00:00

STRAFE fix take two

This commit is contained in:
SpoinkyNL 2016-06-02 22:38:46 +02:00
parent 1fb78cf932
commit 425f888db7

View File

@ -107,8 +107,9 @@ namespace Artemis.DeviceProviders.Corsair
using (var g = Graphics.FromImage(strafeBitmap)) using (var g = Graphics.FromImage(strafeBitmap))
{ {
g.DrawImage(image, new Point(0, 0)); g.DrawImage(image, new Point(0, 0));
g.DrawImage(image, new Rectangle(0, 0, 22, 8), new Rectangle(0, 2, 22, 6), GraphicsUnit.Pixel); g.DrawImage(image, new Rectangle(0, 3, 22, 7), new Rectangle(0, 2, 22, 7), GraphicsUnit.Pixel);
} }
image = strafeBitmap; image = strafeBitmap;
} }