2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-09-09 03:01:41 -04:00

Fixed VR issue

- Fixed werid graphical bug with VR. Issue was with the struct for VrDeviceInfo.
This commit is contained in:
2018-11-22 15:00:25 +00:00
parent 7f7e907c89
commit 1c2fc08a07
8 changed files with 62 additions and 131 deletions

View File

@@ -34,7 +34,7 @@ namespace Examples
var filePath = Console.ReadLine();
var name = Path.GetFileNameWithoutExtension(filePath);
var dir = examples + filePath + ".cs";
// run example if it exists
if (File.Exists(dir))
{
@@ -46,14 +46,14 @@ namespace Examples
catch(TargetInvocationException e)
{
Console.WriteLine(e.InnerException.Message);
Console.WriteLine(e.InnerException.StackTrace);
Console.WriteLine(e.InnerException.StackTrace);
}
Console.WriteLine();
}
else
{
Console.WriteLine(filePath + " is not a valid example");
}
}
}
}
}