mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2026-06-17 14:21:30 +00:00
Output Limelogs to standard error
This commit is contained in:
@@ -35,7 +35,8 @@ extern PLATFORM_CALLBACKS platformCallbacks;
|
|||||||
sprintf(DbgBuf, s, ##__VA_ARGS__); \
|
sprintf(DbgBuf, s, ##__VA_ARGS__); \
|
||||||
platformCallbacks.debugPrint(DbgBuf)
|
platformCallbacks.debugPrint(DbgBuf)
|
||||||
#else
|
#else
|
||||||
#define Limelog printf
|
#define Limelog(s, ...) \
|
||||||
|
fprintf(stderr, s, ##__VA_ARGS__)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(LC_WINDOWS_PHONE) || defined(LC_WINDOWS)
|
#if defined(LC_WINDOWS_PHONE) || defined(LC_WINDOWS)
|
||||||
|
|||||||
Reference in New Issue
Block a user