Merge branch 'msvc_42' of https://github.com/dethrace-labs/dethrace into msvc_42

This commit is contained in:
Jeff Harris 2025-06-29 18:55:27 +12:00
commit 9ff3ec1afb
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ if(DETHRACE_PLATFORM_SDL_DYNAMIC)
target_link_libraries(harness PRIVATE ${CMAKE_DL_LIBS})
endif()
if(!DETHRACE_NET_ENABLED)
if(NOT DETHRACE_NET_ENABLED)
target_sources(harness PRIVATE
os/null.c
)

View File

@ -53,5 +53,5 @@ int OS_SetSocketNonBlocking(int socket) {
}
int OS_CloseSocket(int socket) {
return 0;
return 1;
}