We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae11dfb commit f1d5abdCopy full SHA for f1d5abd
src_c/window.c
@@ -6,6 +6,7 @@
6
7
#include "doc/sdl2_video_doc.h"
8
9
+#ifndef PYGAMEAPI_DISPLAY_INTERNAL // to pass the static check
10
// Copied from display.c
11
#if !defined(__APPLE__)
12
static char *icon_defaultname = "pygame_icon.bmp";
@@ -92,6 +93,8 @@ pg_display_resource(char *filename)
92
93
return result;
94
}
95
96
+#endif // PYGAMEAPI_DISPLAY_INTERNAL
97
+
98
static PyTypeObject pgWindow_Type;
99
100
#define pgWindow_Check(x) \
0 commit comments