equal
deleted
inserted
replaced
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 |