Fixed issue where [Alt] had to be clicked when hitting [Yes] to confirm

printing. Had forgotten to apply fix to Mac OS X.
This commit is contained in:
William Kendrick 2005-07-16 07:43:29 +00:00
parent a8468064fa
commit a953d54099

View file

@ -14413,7 +14413,7 @@ static void do_print(void)
#elif defined(__APPLE__)
/* Mac OS X */
int show = (SDL_GetModState() & KMOD_ALT) && !fullscreen;
int show = (want_alt_printcommand && !fullscreen);
const char* error = SurfacePrint (canvas, show);