diff options
| author | Ray <[email protected]> | 2023-10-19 13:46:02 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2023-10-19 13:46:02 +0200 |
| commit | b674e344a878613881d5e8d0e9f86176e4c0a56f (patch) | |
| tree | 7f00c4506084d4bf6d2468364ba7b089499720be /src/platforms/rcore_template.c | |
| parent | 65dd0afb60770f88d863283aed7098a474535183 (diff) | |
| download | raylib-b674e344a878613881d5e8d0e9f86176e4c0a56f.tar.gz raylib-b674e344a878613881d5e8d0e9f86176e4c0a56f.zip | |
REVIEWED: Issue with symbols exposure
Diffstat (limited to 'src/platforms/rcore_template.c')
| -rw-r--r-- | src/platforms/rcore_template.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/platforms/rcore_template.c b/src/platforms/rcore_template.c index f94cca8c..87aca16d 100644 --- a/src/platforms/rcore_template.c +++ b/src/platforms/rcore_template.c @@ -71,8 +71,8 @@ static PlatformData platform = { 0 }; // Platform specific data //---------------------------------------------------------------------------------- // Module Internal Functions Declaration //---------------------------------------------------------------------------------- -static int InitPlatform(void); // Initialize platform (graphics, inputs and more) -static bool InitGraphicsDevice(void); // Initialize graphics device +int InitPlatform(void); // Initialize platform (graphics, inputs and more) +bool InitGraphicsDevice(void); // Initialize graphics device //---------------------------------------------------------------------------------- // Module Functions Declaration |
