mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-06 14:23:12 +00:00
Update rexm.c
This commit is contained in:
parent
63fb407dc5
commit
4cef89cf04
@ -1667,7 +1667,7 @@ int main(int argc, char *argv[])
|
|||||||
int exTestBuildLogLinesCount = 0;
|
int exTestBuildLogLinesCount = 0;
|
||||||
char **exTestBuildLogLines = LoadTextLines(exTestBuildLog, &exTestBuildLogLinesCount);
|
char **exTestBuildLogLines = LoadTextLines(exTestBuildLog, &exTestBuildLogLinesCount);
|
||||||
|
|
||||||
for (int k = 0, index = 0; k < exTestBuildLogLinesCount; k++)
|
for (int k = 0; k < exTestBuildLogLinesCount; k++)
|
||||||
{
|
{
|
||||||
// Checking compilation warnings generated
|
// Checking compilation warnings generated
|
||||||
if (TextFindIndex(exTestBuildLogLines[k], "warning:") >= 0) testing[i].buildwarns++;
|
if (TextFindIndex(exTestBuildLogLines[k], "warning:") >= 0) testing[i].buildwarns++;
|
||||||
@ -1710,7 +1710,7 @@ int main(int argc, char *argv[])
|
|||||||
// Load build log text lines
|
// Load build log text lines
|
||||||
int exTestLogLinesCount = 0;
|
int exTestLogLinesCount = 0;
|
||||||
char **exTestLogLines = LoadTextLines(exTestLog, &exTestLogLinesCount);
|
char **exTestLogLines = LoadTextLines(exTestLog, &exTestLogLinesCount);
|
||||||
for (int k = 0, index = 0; k < exTestLogLinesCount; k++)
|
for (int k = 0; k < exTestLogLinesCount; k++)
|
||||||
{
|
{
|
||||||
if (TextFindIndex(exTestLogLines[k], "WARNING: GL: NPOT") >= 0) continue; // Ignore warning
|
if (TextFindIndex(exTestLogLines[k], "WARNING: GL: NPOT") >= 0) continue; // Ignore warning
|
||||||
if (TextFindIndex(exTestLogLines[k], "WARNING") >= 0) testing[i].warnings++;
|
if (TextFindIndex(exTestLogLines[k], "WARNING") >= 0) testing[i].warnings++;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user