comparison src/video/gem/SDL_gemvideo.c @ 917:24852aeb0657

Lock the screen before doing its backup
author Patrice Mandin <patmandin@gmail.com>
date Mon, 02 Aug 2004 18:39:50 +0000
parents 99f439d6ee4a
children 17822f1f9674
comparison
equal deleted inserted replaced
916:46916168361d 917:24852aeb0657
518 } 518 }
519 519
520 static void GEM_LockScreen(_THIS) 520 static void GEM_LockScreen(_THIS)
521 { 521 {
522 if (!GEM_locked) { 522 if (!GEM_locked) {
523 /* Reserve memory space, used to be sure of compatibility */
524 form_dial( FMD_START, 0,0,0,0, 0,0,VDI_w,VDI_h);
525 /* Lock AES */ 523 /* Lock AES */
526 wind_update(BEG_UPDATE); 524 wind_update(BEG_UPDATE);
527 wind_update(BEG_MCTRL); 525 wind_update(BEG_MCTRL);
526 /* Reserve memory space, used to be sure of compatibility */
527 form_dial( FMD_START, 0,0,0,0, 0,0,VDI_w,VDI_h);
528 528
529 GEM_locked=SDL_TRUE; 529 GEM_locked=SDL_TRUE;
530 } 530 }
531 } 531 }
532 532