Ejemplo n.º 1
0
		/// <summary>
		/// not in db, so guess
		/// </summary>
		/// <param name="md5"></param>
		/// <returns></returns>
		public static GameProgram GetCompleteGuess(string md5)
		{
			GameProgram ret = new GameProgram(md5);
			ret.Title = "UNKNOWN";
			//ret.CartType = CartType.A7848; // will be guessed for us
			ret.MachineType = MachineType.A7800NTSC;
			ret.LController = Controller.Joystick;
			ret.RController = Controller.Joystick;
			return ret;
		}
Ejemplo n.º 2
0
        /// <summary>
        /// not in db, so guess
        /// </summary>
        /// <param name="md5"></param>
        /// <returns></returns>
        public static GameProgram GetCompleteGuess(string md5)
        {
            GameProgram ret = new GameProgram(md5);

            ret.Title = "UNKNOWN";
            //ret.CartType = CartType.A7848; // will be guessed for us
            ret.MachineType = MachineType.A7800NTSC;
            ret.LController = Controller.Joystick;
            ret.RController = Controller.Joystick;
            return(ret);
        }