mirror of
https://github.com/raysan5/raylib.git
synced 2025-11-13 13:58:46 +00:00
Revert undesired change to rcore and restore correct win32 ifdef and max path (#5297)
Fixes #5293 also add comment for win32 platform.
This commit is contained in:
@@ -26,7 +26,8 @@
|
|||||||
* - Linux DRM subsystem (KMS mode)
|
* - Linux DRM subsystem (KMS mode)
|
||||||
* > PLATFORM_ANDROID:
|
* > PLATFORM_ANDROID:
|
||||||
* - Android (ARM, ARM64)
|
* - Android (ARM, ARM64)
|
||||||
*
|
* > PLATFORM_DESKTOP_WIN32 (Native Win32):
|
||||||
|
* - Windows (Win32, Win64)
|
||||||
* CONFIGURATION:
|
* CONFIGURATION:
|
||||||
* #define SUPPORT_DEFAULT_FONT (default)
|
* #define SUPPORT_DEFAULT_FONT (default)
|
||||||
* Default font is loaded on window initialization to be available for the user to render simple text.
|
* Default font is loaded on window initialization to be available for the user to render simple text.
|
||||||
@@ -161,7 +162,10 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Platform specific defines to handle GetApplicationDirectory()
|
// Platform specific defines to handle GetApplicationDirectory()
|
||||||
#if (defined(_WIN32) && !defined(PLATFORM_DESKTOP_RGFW)) || (defined(_MSC_VER) && defined(PLATFORM_DESKTOP_RGFW))
|
#if defined(_WIN32)
|
||||||
|
#if !defined(MAX_PATH)
|
||||||
|
#define MAX_PATH 260
|
||||||
|
#endif
|
||||||
|
|
||||||
struct HINSTANCE__;
|
struct HINSTANCE__;
|
||||||
#if defined(__cplusplus)
|
#if defined(__cplusplus)
|
||||||
|
|||||||
Reference in New Issue
Block a user