mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 17:15:34 +00:00
No need for named variable.
This commit is contained in:
parent
2bb0f945f9
commit
251a6e813e
|
@ -36,10 +36,8 @@ namespace Examples.Tutorial
|
|||
System.Runtime.InteropServices.Marshal.Copy(
|
||||
offset, rgba, y * stride, stride);
|
||||
}
|
||||
|
||||
var cursor = new OpenTK.MouseCursor(rgba, bitmap.Width, bitmap.Height, 0, 0);
|
||||
|
||||
this.Cursor = cursor;
|
||||
|
||||
this.Cursor = new OpenTK.MouseCursor(rgba, bitmap.Width, bitmap.Height, 0, 0);
|
||||
}
|
||||
|
||||
#region Keyboard_KeyDown
|
||||
|
|
Loading…
Reference in a new issue