mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-03-20 15:51:07 +01:00
Remove newlines from log messages
This commit is contained in:
committed by
Sam Lantinga
parent
17625e20df
commit
718034f5fa
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user