Failed to load font "textures/myfont.tff" (failed to create the font face)
Font font = new Font("textures/myfont.tff");
menu[0].Style = Text.Styles.Bold;
menu[0].Color = Color.Red;
menu[0] = new Text("Play", font);
menu[0].Position = new Vector2f(width / 2.0f, height / 2.0f);
I am pretty sure it is situated in good place because textures that I load occured similar problem and I've solved it by moving textures directory to other place. Is it possible that something is wrong with code or any other ideas?