mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-22 20:35:35 +00:00
Fix SA1000 in Platform\iPhoneOS\iPhoneOSGameView.cs
Fixes "The keyword 'typeof' must not be followed by a space."
This commit is contained in:
parent
178508ac0e
commit
d7c44693e7
|
@ -257,7 +257,7 @@ namespace OpenTK.Platform.iPhoneOS
|
|||
[Export ("layerClass")]
|
||||
public static Class GetLayerClass ()
|
||||
{
|
||||
return new Class (typeof (CAEAGLLayer));
|
||||
return new Class (typeof(CAEAGLLayer));
|
||||
}
|
||||
|
||||
private void AssertValid()
|
||||
|
|
Loading…
Reference in a new issue