CSPspEmu.Gui.Winforms.PspDisplayForm.RefreshGameList C# (CSharp) Method

RefreshGameList() public method

public RefreshGameList ( ) : void
return void
        public void RefreshGameList()
        {
            ThreadPool.QueueUserWorkItem((state) =>
            {
                if (GameListComponent != null) GameListComponent.Init(StoredConfig.IsosPath, ApplicationPaths.MemoryStickRootFolder);
            });
        }
PspDisplayForm