From b716bd33a7556ca3ec31f35916cd7b08a5d24618 Mon Sep 17 00:00:00 2001 From: ColleagueRiley Date: Mon, 7 Oct 2024 15:06:50 -0400 Subject: [PATCH] remove extra printfs --- RGFW.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/RGFW.h b/RGFW.h index 75387a8c..0a3f0616 100644 --- a/RGFW.h +++ b/RGFW.h @@ -3720,7 +3720,6 @@ Start of Linux / Unix defines XGetSystemContentScale(display, &monitor.scaleX, &monitor.scaleY); - printf("%f %f\n", monitor.scaleX * 96.f, monitor.scaleY * 96.f); XRRScreenResources* sr = XRRGetScreenResourcesCurrent(display, RootWindow(display, screen)); XRRCrtcInfo* ci = NULL; @@ -4135,9 +4134,6 @@ RGFW_Event RGFW_eventPipe_pop(RGFW_window* win) { if (win->src.eventLen >= 0) ev = win->src.events[win->src.eventLen]; - else { - printf("H2\n"); - } return ev; } @@ -7097,7 +7093,6 @@ RGFW_UNUSED(win); /*!< if buffer rendering is not being used */ for (int i = 0; i < count; i++) { id fileURL = objc_msgSend_arr(fileURLs, sel_registerName("objectAtIndex:"), i); const char *filePath = ((const char* (*)(id, SEL))objc_msgSend)(fileURL, sel_registerName("UTF8String")); - // printf("File: %s\n", filePath); strncpy(win->event.droppedFiles[i], filePath, RGFW_MAX_PATH); win->event.droppedFiles[i][RGFW_MAX_PATH - 1] = '\0'; } @@ -8009,8 +8004,6 @@ RGFW_UNUSED(win); /*!< if buffer rendering is not being used */ monitor.scaleX = (monitor.rect.w / (screenSizeMM.width)) / 2.6; monitor.scaleY = (monitor.rect.h / (screenSizeMM.height)) / 2.6; - snprintf(monitor.name, 128, "%i %i %i", CGDisplayModelNumber(display), CGDisplayVendorNumber(display), CGDisplaySerialNumber(display)); - return monitor; }