From e4409f673363e99a17f8c178c158b1ea6ea8b2b2 Mon Sep 17 00:00:00 2001 From: Francisco Javier Trujillo Mata Date: Mon, 6 Jun 2022 00:05:20 +0200 Subject: [PATCH] Include SDL_Log driver --- src/SDL_log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SDL_log.c b/src/SDL_log.c index 49027e47b..88dd6af66 100644 --- a/src/SDL_log.c +++ b/src/SDL_log.c @@ -467,7 +467,7 @@ SDL_LogOutput(void *userdata, int category, SDL_LogPriority priority, SDL_NSLog(SDL_priority_prefixes[priority], message); return; } -#elif defined(__PSP__) +#elif defined(__PSP__) || defined(__PS2__) { FILE* pFile; pFile = fopen ("SDL_Log.txt", "a");