From ee3af4fc572569fd5d02b850608ed5ead6158e6d Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Sun, 9 Jul 2023 17:06:33 -0400 Subject: [PATCH] change hard-coded photo dir --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index cf88953..c86e10c 100644 --- a/Program.cs +++ b/Program.cs @@ -306,7 +306,7 @@ public class Game : GameWindow { GL.VertexAttribPointer(texCoordLocation, 2, VertexAttribPointerType.Float, false, 5 * sizeof(float), 3 * sizeof(float)); // Load textures from JPEGs. - string[] files = Directory.GetFiles(@"c:\users\colin\pictures\photos\2023\06\27\"); + string[] files = Directory.GetFiles(@"c:\users\colin\desktop\photos-test\"); foreach (string file in files) { if (file.ToLower().EndsWith(".jpg")) { Image image = Image.Load(file);