Fix returns
This commit is contained in:
parent
626ef8f9d2
commit
ab79cdb2f7
|
|
@ -484,7 +484,7 @@ int GetMonitorRefreshRate(int monitor)
|
||||||
Vector2 GetMonitorScale(int monitor)
|
Vector2 GetMonitorScale(int monitor)
|
||||||
{
|
{
|
||||||
TRACELOG(LOG_WARNING, "GetMonitorScale() not implemented on target platform");
|
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
|
// Get the human-readable, UTF-8 encoded name of the selected monitor
|
||||||
|
|
|
||||||
|
|
@ -633,7 +633,7 @@ int GetMonitorRefreshRate(int monitor)
|
||||||
Vector2 GetMonitorScale(int monitor)
|
Vector2 GetMonitorScale(int monitor)
|
||||||
{
|
{
|
||||||
TRACELOG(LOG_WARNING, "GetMonitorScale() not implemented on target platform");
|
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
|
// Get the human-readable, UTF-8 encoded name of the selected monitor
|
||||||
|
|
|
||||||
|
|
@ -1040,7 +1040,7 @@ int GetMonitorRefreshRate(int monitor)
|
||||||
Vector2 GetMonitorScale(int monitor)
|
Vector2 GetMonitorScale(int monitor)
|
||||||
{
|
{
|
||||||
TRACELOG(LOG_WARNING, "GetMonitorScale() not implemented on target platform");
|
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
|
// Get the human-readable, UTF-8 encoded name of the selected monitor
|
||||||
|
|
|
||||||
|
|
@ -470,7 +470,7 @@ int GetMonitorRefreshRate(int monitor)
|
||||||
Vector2 GetMonitorScale(int monitor)
|
Vector2 GetMonitorScale(int monitor)
|
||||||
{
|
{
|
||||||
TRACELOG(LOG_WARNING, "GetMonitorScale() not implemented on target platform");
|
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
|
// Get the human-readable, UTF-8 encoded name of the selected monitor
|
||||||
|
|
|
||||||
|
|
@ -261,7 +261,7 @@ int GetMonitorRefreshRate(int monitor)
|
||||||
Vector2 GetMonitorScale(int monitor)
|
Vector2 GetMonitorScale(int monitor)
|
||||||
{
|
{
|
||||||
TRACELOG(LOG_WARNING, "GetMonitorScale() not implemented on target platform");
|
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
|
// Get the human-readable, UTF-8 encoded name of the selected monitor
|
||||||
|
|
|
||||||
|
|
@ -755,7 +755,7 @@ int GetMonitorRefreshRate(int monitor)
|
||||||
Vector2 GetMonitorScale(int monitor)
|
Vector2 GetMonitorScale(int monitor)
|
||||||
{
|
{
|
||||||
TRACELOG(LOG_WARNING, "GetMonitorScale() not implemented on target platform");
|
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
|
// Get the human-readable, UTF-8 encoded name of the selected monitor
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user