From 50df31b8b99e5f0a98e4533e120539901e5c3b99 Mon Sep 17 00:00:00 2001 From: Aloshi Date: Sat, 7 Jun 2014 11:26:18 -0500 Subject: [PATCH] Adjusted system info fade speed to match background fade speed. --- src/views/SystemView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/SystemView.cpp b/src/views/SystemView.cpp index 5e9b039cf..f38924514 100644 --- a/src/views/SystemView.cpp +++ b/src/views/SystemView.cpp @@ -169,7 +169,7 @@ void SystemView::onCursorChanged(const CursorState& state) [infoStartOpacity, this] (float t) { mSystemInfo.setOpacity((unsigned char)(lerp(infoStartOpacity, 0.f, t) * 255)); - }, (int)(infoStartOpacity * 300)); + }, (int)(infoStartOpacity * 150)); unsigned int gameCount = getSelected()->getGameCount();