diff options
Diffstat (limited to 'src/fruits/cmv')
| -rw-r--r-- | src/fruits/cmv/cmv.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/fruits/cmv/cmv.c b/src/fruits/cmv/cmv.c index 8509485..6fd1f38 100644 --- a/src/fruits/cmv/cmv.c +++ b/src/fruits/cmv/cmv.c @@ -12,7 +12,11 @@ #include "../common.h" +#ifndef CAMU_SINK_ONLY +#ifndef _WIN32 static str *CMV_UNIX_PATH = al_str_c("/tmp/cmv_sock"); +#endif +#endif struct cmv { struct nn_event_loop loop; @@ -87,7 +91,7 @@ s32 wmain(s32 argc, wchar_t **argv) addr = CAMU_TEST_ADDR; } #else - type = NNWT_SOCKET_TCP; addr = CAMU_SERVER_IP; + type = NNWT_SOCKET_TCP; addr = CAMU_TEST_ADDR; #endif #ifndef CAMU_SINK_ONLY |