Formatting clean-up

This commit is contained in:
Bill Kendrick 2022-04-18 22:07:34 -07:00
parent 206ca7cee2
commit da201ecfe8

View file

@ -17163,17 +17163,17 @@ static int do_slideshow(void)
if (event.button.y < img_scroll_up->h) if (event.button.y < img_scroll_up->h)
{ {
/* Up scroll button: */ /* Up scroll button: */
if (cur > 0) if (cur > 0)
{ {
cur = cur - 4; cur = cur - 4;
update_list = 1; update_list = 1;
playsound(screen, 1, SND_SCROLL, 1, SNDPOS_CENTER, SNDDIST_NEAR); playsound(screen, 1, SND_SCROLL, 1, SNDPOS_CENTER, SNDDIST_NEAR);
if (cur == 0) if (cur == 0)
do_setcursor(cursor_arrow); do_setcursor(cursor_arrow);
} }
if (which >= cur + 16) if (which >= cur + 16)
which = which - 4; which = which - 4;
} }
@ -17181,17 +17181,17 @@ static int do_slideshow(void)
event.button.y < (button_h * buttons_tall + r_ttools.h - img_scroll_down->h)) event.button.y < (button_h * buttons_tall + r_ttools.h - img_scroll_down->h))
{ {
/* Down scroll button: */ /* Down scroll button: */
if (cur < num_files - 16) if (cur < num_files - 16)
{ {
cur = cur + 4; cur = cur + 4;
update_list = 1; update_list = 1;
playsound(screen, 1, SND_SCROLL, 1, SNDPOS_CENTER, SNDDIST_NEAR); playsound(screen, 1, SND_SCROLL, 1, SNDPOS_CENTER, SNDDIST_NEAR);
if (cur >= num_files - 16) if (cur >= num_files - 16)
do_setcursor(cursor_arrow); do_setcursor(cursor_arrow);
} }
if (which < cur) if (which < cur)
which = which + 4; which = which + 4;
} }
@ -17220,7 +17220,7 @@ static int do_slideshow(void)
SDL_InitSubSystem(SDL_INIT_TIMER); SDL_InitSubSystem(SDL_INIT_TIMER);
scrolltimer_dialog = scrolltimer_dialog =
SDL_AddTimer(REPEAT_SPEED, scrolltimer_dialog_callback, (void *)&scrolltimer_dialog_event); SDL_AddTimer(REPEAT_SPEED, scrolltimer_dialog_callback, (void *)&scrolltimer_dialog_event);
} }
else else
{ {
DEBUG_PRINTF("Continuing scrolling\n"); DEBUG_PRINTF("Continuing scrolling\n");
@ -17430,7 +17430,6 @@ static int do_slideshow(void)
oldpos_y = event.button.y; oldpos_y = event.button.y;
} }
else if (event.type == SDL_MOUSEBUTTONUP) else if (event.type == SDL_MOUSEBUTTONUP)
{ {
if (scrolling_dialog) if (scrolling_dialog)