Skip to content

Commit c2104a6

Browse files
committed
Fix paths to make them cross-platform
1 parent 56fdc5c commit c2104a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

VulkanGen/VulkanGen/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ class Program
99
{
1010
static void Main(string[] args)
1111
{
12-
string vkFile = "..\\..\\..\\..\\..\\KhronosRegistry\\vk.xml";
13-
string outputPath = "..\\..\\..\\..\\Evergine.Bindings.Vulkan\\Generated";
12+
string vkFile = Path.Combine("..", "..", "..", "..", "..", "KhronosRegistry", "vk.xml");
13+
string outputPath = Path.Combine("..", "..", "..", "..", "Evergine.Bindings.Vulkan", "Generated");
1414

1515
var vulkanSpec = VulkanSpecification.FromFile(vkFile);
1616

@@ -176,7 +176,7 @@ static void Main(string[] args)
176176
{
177177
// Avoid duplicate members from Vulkan Safety Critical
178178
if (Helpers.IsVKSC(member.Api))
179-
{
179+
{
180180
continue;
181181
}
182182

0 commit comments

Comments
 (0)