REVIEWED: Issue with functions definitions

This commit is contained in:
Ray
2023-10-19 13:57:31 +02:00
parent b674e344a8
commit 081fffd46e
7 changed files with 17 additions and 13 deletions

View File

@ -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
}