Fix returns

This commit is contained in:
asdqwe 2024-11-20 18:44:15 -03:00
parent 626ef8f9d2
commit ab79cdb2f7
6 changed files with 6 additions and 6 deletions

View File

@ -484,7 +484,7 @@ int GetMonitorRefreshRate(int monitor)
Vector2 GetMonitorScale(int monitor)
{
TRACELOG(LOG_WARNING, "GetMonitorScale() not implemented on target platform");
return 0;
return (Vector2){ 1.0f, 1.0f };
}
// Get the human-readable, UTF-8 encoded name of the selected monitor

View File

@ -633,7 +633,7 @@ int GetMonitorRefreshRate(int monitor)
Vector2 GetMonitorScale(int monitor)
{
TRACELOG(LOG_WARNING, "GetMonitorScale() not implemented on target platform");
return 0;
return (Vector2){ 1.0f, 1.0f };
}
// Get the human-readable, UTF-8 encoded name of the selected monitor

View File

@ -1040,7 +1040,7 @@ int GetMonitorRefreshRate(int monitor)
Vector2 GetMonitorScale(int monitor)
{
TRACELOG(LOG_WARNING, "GetMonitorScale() not implemented on target platform");
return 0;
return (Vector2){ 1.0f, 1.0f };
}
// Get the human-readable, UTF-8 encoded name of the selected monitor

View File

@ -470,7 +470,7 @@ int GetMonitorRefreshRate(int monitor)
Vector2 GetMonitorScale(int monitor)
{
TRACELOG(LOG_WARNING, "GetMonitorScale() not implemented on target platform");
return 0;
return (Vector2){ 1.0f, 1.0f };
}
// Get the human-readable, UTF-8 encoded name of the selected monitor

View File

@ -261,7 +261,7 @@ int GetMonitorRefreshRate(int monitor)
Vector2 GetMonitorScale(int monitor)
{
TRACELOG(LOG_WARNING, "GetMonitorScale() not implemented on target platform");
return 0;
return (Vector2){ 1.0f, 1.0f };
}
// Get the human-readable, UTF-8 encoded name of the selected monitor

View File

@ -755,7 +755,7 @@ int GetMonitorRefreshRate(int monitor)
Vector2 GetMonitorScale(int monitor)
{
TRACELOG(LOG_WARNING, "GetMonitorScale() not implemented on target platform");
return 0;
return (Vector2){ 1.0f, 1.0f };
}
// Get the human-readable, UTF-8 encoded name of the selected monitor