diff options
| author | Ray <[email protected]> | 2023-10-19 13:57:31 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2023-10-19 13:57:31 +0200 |
| commit | 081fffd46e56ae1e6f80b12bf8fe5728828def22 (patch) | |
| tree | f70765fa3bd442155120827e00423603eb253ee3 /src/platforms/rcore_template.c | |
| parent | b674e344a878613881d5e8d0e9f86176e4c0a56f (diff) | |
| download | raylib-081fffd46e56ae1e6f80b12bf8fe5728828def22.tar.gz raylib-081fffd46e56ae1e6f80b12bf8fe5728828def22.zip | |
REVIEWED: Issue with functions definitions
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 87aca16d..dc71a66c 100644 --- a/src/platforms/rcore_template.c +++ b/src/platforms/rcore_template.c @@ -429,7 +429,7 @@ void PollInputEvents(void) //---------------------------------------------------------------------------------- // Initialize platform: graphics, inputs and more -static int InitPlatform(void) +int InitPlatform(void) { CORE.Window.fullscreen = true; CORE.Window.flags |= FLAG_FULLSCREEN_MODE; @@ -556,7 +556,7 @@ static int InitPlatform(void) } // Close platform -static void ClosePlatform(void) +void ClosePlatform(void) { // TODO: De-initialize graphics, inputs and more } |
