From 12cf4fb1e4f4fa2ab9b5594a6d55065191348756 Mon Sep 17 00:00:00 2001 From: Andy Adshead Date: Sat, 29 Dec 2018 21:57:27 +0000 Subject: [PATCH] Formatting fixes --- Ryujinx/Ui/GLScreen.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Ryujinx/Ui/GLScreen.cs b/Ryujinx/Ui/GLScreen.cs index a884ed4d41..8c3c129663 100644 --- a/Ryujinx/Ui/GLScreen.cs +++ b/Ryujinx/Ui/GLScreen.cs @@ -247,14 +247,14 @@ namespace Ryujinx _device.Statistics.RecordSystemFrameTime(); // System - double hostFps = _device.Statistics.GetSystemFrameRate(); - double hostFrameTime = _device.Statistics.GetSystemFrameTime(); - double hostAvgFrameTime = _device.Statistics.GetSystemAverageFrameTime(); + double hostFps = _device.Statistics.GetSystemFrameRate(); + double hostFrameTime = _device.Statistics.GetSystemFrameTime(); + double hostAvgFrameTime = _device.Statistics.GetSystemAverageFrameTime(); // Game - double gameFps = _device.Statistics.GetGameFrameRate(); - double gameFrameTime =_device.Statistics.GetGameFrameTime(); - double gameAvgFrameTime = _device.Statistics.GetGameAverageFrameTime(); + double gameFps = _device.Statistics.GetGameFrameRate(); + double gameFrameTime =_device.Statistics.GetGameFrameTime(); + double gameAvgFrameTime = _device.Statistics.GetGameAverageFrameTime(); string titleSection = string.IsNullOrWhiteSpace(_device.System.CurrentTitle) ? string.Empty : " | " + _device.System.CurrentTitle;