Update win64 coopnet
This commit is contained in:
parent
e13a77dd91
commit
19bc36c220
4
Makefile
4
Makefile
|
@ -976,9 +976,9 @@ COOPNET_LIBS :=
|
|||
ifeq ($(COOPNET),1)
|
||||
ifeq ($(WINDOWS_BUILD),1)
|
||||
ifeq ($(TARGET_BITS), 32)
|
||||
LDFLAGS += -Llib/coopnet/win32 -l:libcoopnet.a -l:libjuice.a -lbcrypt -lws2_32
|
||||
LDFLAGS += -Llib/coopnet/win32 -l:libcoopnet.a -l:libjuice.a -lbcrypt -lws2_32 -liphlpapi
|
||||
else
|
||||
LDFLAGS += -Llib/coopnet/win64 -l:libcoopnet.a -l:libjuice.a -lbcrypt -lws2_32
|
||||
LDFLAGS += -Llib/coopnet/win64 -l:libcoopnet.a -l:libjuice.a -lbcrypt -lws2_32 -liphlpapi
|
||||
endif
|
||||
else ifeq ($(OSX_BUILD),1)
|
||||
LDFLAGS += -Wl,-rpath,@loader_path -L./lib/coopnet/mac/ -l coopnet
|
||||
|
|
Binary file not shown.
|
@ -36,7 +36,11 @@ void discord_fatal(int rc) {
|
|||
}
|
||||
|
||||
if (rc != DiscordResult_Ok) {
|
||||
LOG_ERROR("Discord threw an error. RC: %d", rc);
|
||||
static sDiscordReported = false;
|
||||
if (!sDiscordReported) {
|
||||
sDiscordReported = true;
|
||||
LOG_ERROR("Discord threw an error. RC: %d", rc);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -68,7 +68,7 @@ void gfx_cc_print(struct ColorCombiner *cc) {
|
|||
printf("0x%08x", cm->flags);
|
||||
|
||||
printf(");");
|
||||
printf(" // %016lx", cm->hash);
|
||||
printf(" // %016" PRIx64, cm->hash);
|
||||
printf("\n");
|
||||
#endif
|
||||
}
|
||||
|
|
|
@ -100,7 +100,7 @@ void network_receive_chat(struct Packet* p) {
|
|||
// add the message
|
||||
djui_chat_message_create_from(globalIndex, remoteMessage);
|
||||
|
||||
if (gNetworkSystem && gNetworkSystem->get_id_str && np && np->name) {
|
||||
if (gNetworkSystem && gNetworkSystem->get_id_str && np) {
|
||||
LOG_CONSOLE("[%s] %s: %s", gNetworkSystem->get_id_str(np->localIndex), np->name, remoteMessage);
|
||||
}
|
||||
LOG_INFO("rx chat: %s", remoteMessage);
|
||||
|
|
Loading…
Reference in New Issue