Skip to content

[Feature]: Remove ' ' between file:line #252

@ReinhardKeil

Description

@ReinhardKeil

To make the VS Code editor work (synchronize to line number), change:

    SDS_PRINTF("Error: SDS_ERROR_CHECK status = %i: %s: %u\n", sds_status, sdsError.file, sdsError.line); \
    SDS_PRINTF("Error: SDS_ASSERT failed: %s: %u\n", sdsError.file, sdsError.line); \

To:

    SDS_PRINTF("Error: SDS_ERROR_CHECK status = %i: %s:%u\n", sds_status, sdsError.file, sdsError.line); \
    SDS_PRINTF("Error: SDS_ASSERT failed: %s:%u\n", sdsError.file, sdsError.line); \

Metadata

Metadata

Assignees

Labels

No labels
No labels
No fields configured for Feature.

Projects

Status
In review

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions