mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 05:15:30 +00:00
Removed an unused variable warning.
This commit is contained in:
parent
f5ccec88e6
commit
e14a460d2a
|
@ -99,7 +99,7 @@ namespace Examples
|
||||||
FieldInfo info = type.GetField("order");
|
FieldInfo info = type.GetField("order");
|
||||||
order = (int)info.GetValue(null);
|
order = (int)info.GetValue(null);
|
||||||
}
|
}
|
||||||
catch (NullReferenceException nre)
|
catch (NullReferenceException)
|
||||||
{
|
{
|
||||||
Debug.Print("Example {0} does not have ordering info", type.FullName);
|
Debug.Print("Example {0} does not have ordering info", type.FullName);
|
||||||
order = 0;
|
order = 0;
|
||||||
|
|
Loading…
Reference in a new issue