mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-08-28 19:21:08 +00:00
Fixed loading of Bitmap on Linux (invalid path separator).
This commit is contained in:
parent
e0ec0b2035
commit
3822655209
|
@ -26,7 +26,7 @@ namespace Examples.Tutorial
|
|||
[Example("Texture mapping", ExampleCategory.Tutorial, 5)]
|
||||
public class Textures : GameWindow
|
||||
{
|
||||
Bitmap bitmap = new Bitmap("Data\\logo-dark.jpg");
|
||||
Bitmap bitmap = new Bitmap("Data/logo-dark.jpg");
|
||||
int texture;
|
||||
|
||||
public Textures() : base(new DisplayMode(800, 600)) { }
|
||||
|
|
Loading…
Reference in a new issue