private void CompileString()
    {
        var info = "";
        var game = controller.GetCurrentGame();

        if (game == null)
        {
            return;
        }

        if (game.Author.Length > 2)
        {
            info += "Developed by: " + game.Author + "\n";
        }
        if (game.Description.Length > 4)
        {
            info += game.Description + "\n";
        }

        text.text = info;
    }