Mercurial > sdl-ios-xcode
comparison src/SDL_assert.c @ 3690:e431b888ac6c
Fixed compilation on iPhone
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 21 Jan 2010 16:12:24 +0000 |
parents | 64ce267332c6 |
children | f7b03b6838cb |
comparison
equal
deleted
inserted
replaced
3689:af25b5586af7 | 3690:e431b888ac6c |
---|---|
310 /* platform-specific UI... */ | 310 /* platform-specific UI... */ |
311 | 311 |
312 #ifdef _WINDOWS | 312 #ifdef _WINDOWS |
313 state = SDL_PromptAssertion_windows(data); | 313 state = SDL_PromptAssertion_windows(data); |
314 | 314 |
315 #elif __APPLE__ | 315 #elif __MACOSX__ |
316 /* This has to be done in an Objective-C (*.m) file, so we call out. */ | 316 /* This has to be done in an Objective-C (*.m) file, so we call out. */ |
317 extern SDL_assert_state SDL_PromptAssertion_cocoa(const SDL_assert_data *); | 317 extern SDL_assert_state SDL_PromptAssertion_cocoa(const SDL_assert_data *); |
318 state = SDL_PromptAssertion_cocoa(data); | 318 state = SDL_PromptAssertion_cocoa(data); |
319 | 319 |
320 #else | 320 #else |