コード例 #1
0
ファイル: Instance.cs プロジェクト: mattweb28/pspplayer
        public void SwitchToGame(Games.GameInformation game)
        {
            Log.WriteLine(Verbosity.Critical, Feature.General, "Instance: switching to game " + game.Parameters.Title);
#if XMB
            _xmb.Disable();
#else
#endif
            _bios.Game = game;
            LoadResults results = _bios.Load();
        }
コード例 #2
0
ファイル: TestInstance.cs プロジェクト: mattweb28/pspplayer
 public LoadResults SwitchToGame(Games.GameInformation game)
 {
     Debug.WriteLine("Instance: switching to game " + game.Parameters.Title);
     _bios.Game = game;
     return(_bios.Load());
 }