Mercurial > sdl-ios-xcode
view src/video/uikit/jumphack.c @ 3704:9bc9ff36eb8f
Merged r5549:5550 from branches/SDL-1.2: ALSA 6-channel swizzle fix.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Fri, 12 Feb 2010 17:14:41 +0000 |
parents | f55c87ae336b |
children | e8045ba3f79f |
line wrap: on
line source
/* * jumphack.c * SDLiPhoneOS * */ #include "jumphack.h" /* see SDL_uikitevents.m for more info */ /* stores the information we need to jump back */ jmp_buf env; /* returns the jump environment for setting / getting purposes */ jmp_buf * jump_env() { return &env; }