From b8eb7dccfdd16bd1d39bbedeb176fce7f0f1dc9e Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 19 Jul 2017 16:08:33 -0400 Subject: Fix terminal and add support for animations --- ShiftOS.Frontend/Apps/FileSkimmer.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ShiftOS.Frontend/Apps/FileSkimmer.cs') diff --git a/ShiftOS.Frontend/Apps/FileSkimmer.cs b/ShiftOS.Frontend/Apps/FileSkimmer.cs index 29c5802..c4dbb09 100644 --- a/ShiftOS.Frontend/Apps/FileSkimmer.cs +++ b/ShiftOS.Frontend/Apps/FileSkimmer.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using Microsoft.Xna.Framework; using ShiftOS.Engine; using static ShiftOS.Objects.ShiftFS.Utils; @@ -133,11 +134,11 @@ namespace ShiftOS.Frontend.Apps } - protected override void OnLayout() + protected override void OnLayout(GameTime gameTime) { try { - _currentdirtext.Layout(); + _currentdirtext.Layout(gameTime); _fList.X = 0; _fList.Y = 0; _fList.Width = Width; -- cgit v1.2.3