/// <summary>
        /// Removes a cartridge from the store, and wipes all its related content, including
        /// cache, logs and savegames.
        /// </summary>
        /// <param name="tag"></param>
        public void DeleteCartridgeAndContent(CartridgeTag tag)
        {
            // Clears the history for this tag.
            History.RemoveAllOf(tag.Guid);

            // Removes it from the store.
            CartridgeStore.RemoveCartridgeTag(tag, true);
        }