From 580136baf3a2be79d156eabad5b4248a57fd099f Mon Sep 17 00:00:00 2001 From: Emmanuel Hansen Date: Mon, 15 Jul 2024 10:51:38 +0000 Subject: [PATCH] fix format --- .../SoftwareKeyboard/SoftwareKeyboardRendererBase.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs index 23e483433f..cc62eca1df 100644 --- a/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs +++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs @@ -307,11 +307,11 @@ namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard if (text == "") { - var emptyWidth = paint.MeasureText(" ", ref bounds); + paint.MeasureText(" ", ref bounds); } else { - var width = paint.MeasureText(text, ref bounds); + paint.MeasureText(text, ref bounds); } return bounds; @@ -323,11 +323,11 @@ namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard if (text == "") { - var emptyWidth = paint.MeasureText(" ", ref bounds); + paint.MeasureText(" ", ref bounds); } else { - var width = paint.MeasureText(text, ref bounds); + paint.MeasureText(text, ref bounds); } return bounds;