Merge remote-tracking branch 'origin/master' into season4
This commit is contained in:
commit
a35865620f
|
@ -49,7 +49,7 @@
|
|||
];
|
||||
|
||||
qtWrapperArgs = optionals isLinux [
|
||||
"--prefix LD_LIBRARY_PATH : ${makeLibraryPath [ pkgs.libpcap ]}"
|
||||
"--prefix LD_LIBRARY_PATH : ${makeLibraryPath [ pkgs.libpcap pkgs.wayland ]}"
|
||||
] ++ optionals isDarwin [
|
||||
"--prefix DYLD_LIBRARY_PATH : ${makeLibraryPath [ pkgs.libpcap ]}"
|
||||
];
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
|
||||
#include "NDS.h"
|
||||
#include "NDSCart.h"
|
||||
#include "main.h"
|
||||
//#include "IPC.h"
|
||||
#include "Netplay.h"
|
||||
//#include "Input.h"
|
||||
|
@ -442,7 +441,7 @@ printf("[MC] start blob type=%d len=%d\n", type, len);
|
|||
u8* dst = Blobs[type];
|
||||
if (!dst) return;
|
||||
if (BlobLens[type] != len) return;
|
||||
printf("[MC] recv blob data, type=%d pos=%08X len=%08X data=%08X\n", type, pos, len, pkt->dataLength-16);
|
||||
printf("[MC] recv blob data, type=%d pos=%08X len=%08X data=%08lX\n", type, pos, len, pkt->dataLength-16);
|
||||
memcpy(&dst[pos], &buf[16], pkt->dataLength-16);
|
||||
}
|
||||
else if (buf[0] == 0x03)
|
||||
|
|
Loading…
Reference in New Issue