From 57f28a8ff56d3ac2356645b5ff5ae5ed09fcc40c Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Tue, 24 Aug 2021 18:30:35 +0200 Subject: [PATCH] (Windows) Fixed an MSVC compiler warning. --- es-app/src/guis/GuiAlternativeEmulators.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/guis/GuiAlternativeEmulators.cpp b/es-app/src/guis/GuiAlternativeEmulators.cpp index ca5bb888e..a2ab49a86 100644 --- a/es-app/src/guis/GuiAlternativeEmulators.cpp +++ b/es-app/src/guis/GuiAlternativeEmulators.cpp @@ -23,7 +23,7 @@ GuiAlternativeEmulators::GuiAlternativeEmulators(Window* window) // Horizontal sizes for the system and label entries. float systemSizeX = mMenu.getSize().x / 3.27f; - float labelSizeX = mMenu.getSize().x / 1.53; + float labelSizeX = mMenu.getSize().x / 1.53f; for (auto it = SystemData::sSystemVector.cbegin(); // Line break. it != SystemData::sSystemVector.cend(); it++) {