Skip to content

Commit

Permalink
Merge pull request #874 from Nezz/iOS_guide_auth_fix
Browse files Browse the repository at this point in the history
Fixes #861, let's discuss
  • Loading branch information
tomspilman committed Nov 6, 2012
2 parents b9d713b + e29bfa6 commit 0b006ba
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions MonoGame.Framework/iOS/GamerServices/SignedInGamer.cs
Expand Up @@ -95,26 +95,12 @@ private void DoAuthentication()

if (lp != null)
{
Guide.IsVisible = true;
lp.Authenticate( delegate(NSError error)
{
try
{
if ( error != null )
{
#if DEBUG
Console.WriteLine(error);
{
#if DEBUG
if ( error != null )
Console.WriteLine(error);
#endif
}
else
{

}
}
finally
{
Guide.IsVisible = false;
}
}
);
}
Expand Down

0 comments on commit 0b006ba

Please sign in to comment.