X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsystem.c;h=98b16c42597b14a4d640a22ca2c4665a00167d72;hb=7ff43d7ba40390c41b10888aad0a35dfe3cad82a;hp=fd0815b38d81d4cf6998f68605b8728fc2465a3e;hpb=909a0a4d74f274b5c05c16cf595b235aa092fc9a;p=rocksndiamonds.git diff --git a/src/libgame/system.c b/src/libgame/system.c index fd0815b3..98b16c42 100644 --- a/src/libgame/system.c +++ b/src/libgame/system.c @@ -357,6 +357,16 @@ inline boolean DrawingDeactivated(int x, int y, int width, int height) if ((gfx.draw_deactivation_mask & REDRAW_FIELD) && x < gfx.sx + gfx.sxsize) return TRUE; + else if ((gfx.draw_deactivation_mask & REDRAW_DOORS) && + x > gfx.dx) + { + if ((gfx.draw_deactivation_mask & REDRAW_DOOR_1) && + y < gfx.dy + gfx.dysize) + return TRUE; + else if ((gfx.draw_deactivation_mask & REDRAW_DOOR_2) && + y > gfx.vy) + return TRUE; + } } return FALSE; @@ -659,7 +669,8 @@ Bitmap *LoadImage(char *filename) new_bitmap = X11LoadImage(filename); #endif - new_bitmap->source_filename = getStringCopy(filename); + if (new_bitmap) + new_bitmap->source_filename = getStringCopy(filename); return new_bitmap; } @@ -727,17 +738,17 @@ inline void OpenAudio(void) audio.sound_available = FALSE; audio.music_available = FALSE; audio.loops_available = FALSE; - audio.mods_available = FALSE; + audio.sound_enabled = FALSE; + audio.sound_deactivated = FALSE; audio.soundserver_pipe[0] = audio.soundserver_pipe[1] = 0; - audio.soundserver_pid = 0; + audio.soundserver_pid = -1; audio.device_name = NULL; audio.device_fd = 0; audio.channels = 0; audio.music_channel = 0; - audio.music_nr = 0; #if defined(TARGET_SDL) SDLOpenAudio();