Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Stop a compiler warning on newer Mac OS X SDKs.
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/video/quartz/SDL_QuartzVideo.m
|
@@ -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: |
|
|