mirror of
https://github.com/yawut/SDL.git
synced 2026-04-17 06:16:11 -05:00
WinRT: made SDL_Log output to Visual C++'s debug console (via existing Win32 code in SDL)
This commit is contained in:
parent
c115d98c26
commit
9d8b05142c
|
|
@ -28,7 +28,7 @@
|
|||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
#if defined(__WIN32__)
|
||||
#if defined(__WIN32__) || defined(__WINRT__)
|
||||
#include "core/windows/SDL_windows.h"
|
||||
#elif defined(__ANDROID__)
|
||||
#include <android/log.h>
|
||||
|
|
@ -280,7 +280,7 @@ static void
|
|||
SDL_LogOutput(void *userdata, int category, SDL_LogPriority priority,
|
||||
const char *message)
|
||||
{
|
||||
#if defined(__WIN32__)
|
||||
#if defined(__WIN32__) || defined(__WINRT__)
|
||||
/* Way too many allocations here, urgh */
|
||||
{
|
||||
char *output;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user