Skip to content

Commit

Permalink
Stop a compiler warning on newer Mac OS X SDKs.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Nov 4, 2011
1 parent 704dcf7 commit dc977f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/quartz/SDL_QuartzVideo.m
Expand Up @@ -930,7 +930,7 @@ other blitting while waiting on the VBL (and hence results in higher framerates)
return current;

/* Since the blanking window covers *all* windows (even force quit) correct recovery is crucial */
ERR_NO_GL:
ERR_NO_GL: goto ERR_DOUBLEBUF; /* this goto is to stop a compiler warning on newer SDKs. */
ERR_DOUBLEBUF: QZ_RestoreDisplayMode(this);
ERR_NO_SWITCH: CGReleaseAllDisplays ();
ERR_NO_CAPTURE:
Expand Down

0 comments on commit dc977f8

Please sign in to comment.