mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
Don't implement read_stdin for Xbox
This commit is contained in:
parent
e4210f5b00
commit
d339eb327c
@ -32,9 +32,13 @@
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#ifndef _XBOX
|
||||
|
||||
#if defined(_WIN32)
|
||||
#if defined(_WIN32) && defined(_XBOX)
|
||||
size_t read_stdin(char *buf, size_t size)
|
||||
{
|
||||
/* Not implemented. */
|
||||
return 0;
|
||||
}
|
||||
#elif defined(_WIN32)
|
||||
size_t read_stdin(char *buf, size_t size)
|
||||
{
|
||||
DWORD i;
|
||||
@ -139,5 +143,3 @@ size_t read_stdin(char *buf, size_t size)
|
||||
return has_read;
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user