mirror of
https://github.com/yawut/SDL.git
synced 2026-08-25 02:05:07 -05:00
WinRT: made SDL_Log output to Visual C++'s debug console (via existing Win32 code in SDL)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user