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 93c5dc3 commit 12dc0d6Copy full SHA for 12dc0d6
1 file changed
src/rcore.c
@@ -26,7 +26,8 @@
26
* - Linux DRM subsystem (KMS mode)
27
* > PLATFORM_ANDROID:
28
* - Android (ARM, ARM64)
29
-*
+* > PLATFORM_DESKTOP_WIN32 (Native Win32):
30
+* - Windows (Win32, Win64)
31
* CONFIGURATION:
32
* #define SUPPORT_DEFAULT_FONT (default)
33
* Default font is loaded on window initialization to be available for the user to render simple text.
@@ -161,7 +162,10 @@
161
162
#endif
163
164
// Platform specific defines to handle GetApplicationDirectory()
-#if (defined(_WIN32) && !defined(PLATFORM_DESKTOP_RGFW)) || (defined(_MSC_VER) && defined(PLATFORM_DESKTOP_RGFW))
165
+#if defined(_WIN32)
166
+ #if !defined(MAX_PATH)
167
+ #define MAX_PATH 260
168
+ #endif
169
170
struct HINSTANCE__;
171
#if defined(__cplusplus)
0 commit comments