From 453eac7f1f5ef70390ec51087fc1f190811a7507 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Wed, 17 Nov 2021 09:47:45 +0100 Subject: Replace sfml with mgl --- src/Utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Utils.cpp') diff --git a/src/Utils.cpp b/src/Utils.cpp index d466bee..ca153ab 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp @@ -85,7 +85,7 @@ namespace QuickMedia { return (int64_t)time.tv_sec * 1000 + (int64_t)time.tv_nsec / 1000000; } - sf::Vector2f vec2f_floor(float x, float y) { - return sf::Vector2f(int(x), int(y)); + mgl::vec2f vec2f_floor(float x, float y) { + return mgl::vec2f(int(x), int(y)); } } -- cgit v1.2.3