mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
REVIEWED: Issue with functions definitions
This commit is contained in:
@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user