Yet more clang-formatting

This commit is contained in:
Jasmine Iwanek
2023-02-28 23:24:58 -05:00
parent c29958af6a
commit 610401de7a
45 changed files with 1245 additions and 1230 deletions

View File

@@ -88,8 +88,8 @@ vnc_mouse_poll(void)
mouse_x += ms.dx;
mouse_y += ms.dy;
ms.dx = 0;
ms.dy = 0;
ms.dx = 0;
ms.dy = 0;
// pclog("dx=%d, dy=%d, dwheel=%d\n", mouse_x, mouse_y, mouse_z);
}
@@ -186,7 +186,7 @@ vnc_display(rfbClientPtr cl)
static void
vnc_blit(int x, int y, int w, int h, int monitor_index)
{
int row;
int row;
if (monitor_index || (x < 0) || (y < 0) || (w < VNC_MIN_X) || (h < VNC_MIN_Y) || (w > VNC_MAX_X) || (h > VNC_MAX_Y) || (buffer32 == NULL)) {
video_blit_complete_monitor(monitor_index);