Codechange: replace fprintf(<FILE*> with fmt::print(<FILE*>

This commit is contained in:
Rubidium
2023-05-21 08:13:28 +02:00
committed by rubidium42
parent c518293135
commit 275ebf4509
11 changed files with 39 additions and 41 deletions

View File

@@ -397,7 +397,7 @@ void CocoaDialog(const char *title, const char *message, const char *buttonLabel
if (VideoDriver::GetInstance() == nullptr) {
CocoaSetupApplication(); // Setup application before showing dialog
} else if (!_cocoa_video_started && VideoDriver::GetInstance()->Start({}) != nullptr) {
fprintf(stderr, "%s: %s\n", title, message);
fmt::print(stderr, "{}: {}\n", title, message);
return;
}