mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-06 06:34:35 +00:00
Remove newlines from log messages
This commit is contained in:
parent
17625e20df
commit
718034f5fa
123 changed files with 1143 additions and 1118 deletions
|
|
@ -91,7 +91,7 @@ int main(int argc, char *argv[])
|
|||
seed_seen = 1;
|
||||
consumed = 1;
|
||||
} else {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Invalid seed. Use a decimal or hexadecimal number.\n");
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Invalid seed. Use a decimal or hexadecimal number.");
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
|
@ -108,7 +108,7 @@ int main(int argc, char *argv[])
|
|||
if (!seed_seen) {
|
||||
seed = SDL_GetPerformanceCounter();
|
||||
}
|
||||
SDL_Log("Using random seed 0x%" SDL_PRIx64 "\n", seed);
|
||||
SDL_Log("Using random seed 0x%" SDL_PRIx64, seed);
|
||||
|
||||
for (iteration = 0; iteration < SDL_arraysize(itervals); iteration++) {
|
||||
const int arraylen = itervals[iteration];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue