svn-id: r5936
This commit is contained in:
Max Horn 2002-12-13 17:44:04 +00:00
parent 57187dbdcd
commit 80a962dd02
4 changed files with 10 additions and 51 deletions

View file

@ -655,20 +655,6 @@ bool OSystem_SDL_Common::set_sound_proc(void *param, SoundProc *proc, byte forma
return true;
}
/* retrieve the 320x200 bitmap currently being displayed */
void OSystem_SDL_Common::get_screen_image(byte *buf) {
/* make sure the mouse is gone */
undraw_mouse();
if (SDL_LockSurface(_screen) == -1)
error("SDL_LockSurface failed: %s.\n", SDL_GetError());
memcpy(buf, _screen->pixels, _screenWidth*_screenHeight);
SDL_UnlockSurface(_screen);
}
uint32 OSystem_SDL_Common::property(int param, Property *value) {
switch(param) {
@ -691,15 +677,6 @@ uint32 OSystem_SDL_Common::property(int param, Property *value) {
}
break;
case PROP_SET_GFX_MODE:
if (value->gfx_mode >= 7)
return 0;
_mode = value->gfx_mode;
hotswap_gfx_mode();
return 1;
case PROP_SHOW_DEFAULT_CURSOR:
SDL_ShowCursor(value->show_cursor ? SDL_ENABLE : SDL_DISABLE);
break;