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); \
To make the VS Code editor work (synchronize to line number), change:
To: