From 36ab8d9f6ea9622e17cbf67212e0855de4f9be2b Mon Sep 17 00:00:00 2001 From: kj16609 Date: Tue, 23 Jan 2024 12:12:26 -0500 Subject: [PATCH] Fix typo --- src/engine/Model.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/Model.cpp b/src/engine/Model.cpp index 4290cd6..bfadc44 100644 --- a/src/engine/Model.cpp +++ b/src/engine/Model.cpp @@ -364,7 +364,7 @@ namespace fgl::engine case GL_CLAMP_TO_BORDER: return vk::SamplerAddressMode::eClampToBorder; #endif -#ifdef GL_CLAMP_TO_BORDER +#ifdef GL_CLAMP_TO_EDGE case GL_CLAMP_TO_EDGE: return vk::SamplerAddressMode::eClampToEdge; #endif