Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
0verEngineer committed Jun 14, 2024
1 parent 79592fa commit c63b67d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/editor/PlatQt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,8 @@ void Platform::DebugPrintf(const char *format, ...) {

void Platform::Assert(const char *c, const char *file, int line) {
char buffer[2000];
snprintf(buffer, sizeof(buffer), "Assertion [%s] failed at %s %d\n", c, file, line);
snprintf(buffer, sizeof(buffer), "Assertion [%s] failed at %s %d\n", c, file,
line);
Platform::DebugDisplay(buffer);
}

Expand Down

0 comments on commit c63b67d

Please sign in to comment.