Update win64 coopnet

This commit is contained in:
MysterD 2023-06-14 01:38:19 -07:00
parent 61b72ae1ee
commit f35a6621dc
5 changed files with 9 additions and 5 deletions

View File

@ -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.

View File

@ -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);
}
}
}

View File

@ -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
}

View File

@ -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);