Exemple #1
0
        public void Add(GameInformation game)
        {
            Debug.Assert(game.GameType != GameType.Eboot);
            GameInformation copy = ( GameInformation )game.Clone();

            _list.Add(copy);
            _lookup.Add(copy.HostPath, copy);

            // We build the image off the real game, which should have the icon stream
            using (Bitmap b = this.GetImage(game))
            {
            }
        }