-
Posts
5,207 -
Joined
-
Last visited
eezstreet's Achievements
Single Status Update
-
Updated the OpenJK compiling thread. It now requires VS2013 in order to compile.
- Show previous comments 5 more
-
The change isn't for 64-bit Windows (I don't think?). The original code used printf("0x%x", ptr);, where %x prints out ptr in hex. But the C spec doesn't define whether 0x should or shouldn't be included as part of formatting %x. There are C runtime implementations that do either. The PRIxPTR macro in inttypes.h supposedly only prints the hex value of the address without the 0x prefix.