Skip to content

Commit

Permalink
Turn off some debug output. I'm sure I'll regret this soon. :)
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Oct 5, 2016
1 parent 88ca89f commit fae99dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lx_loader.c
Expand Up @@ -479,7 +479,7 @@ static void *getModuleProcAddrByName(const LxModule *module, const char *name)

static void doFixup(uint8 *page, const sint16 offset, const uint32 finalval, const uint16 finalval2, const uint32 finalsize)
{
#if 1
#if 0
if (finalsize == 6) {
printf("fixing up %p to 0x%X:0x%X (6 bytes)...\n", page + offset, (uint) finalval2, (uint) finalval);
} else {
Expand Down
2 changes: 1 addition & 1 deletion native/os2native.h
Expand Up @@ -9,7 +9,7 @@
#include "os2errors.h"
#include "../lx_loader.h"

#if 1
#if 0
#define TRACE_NATIVE(...) do { printf("TRACE: "); printf(__VA_ARGS__); printf(";\n"); } while (0)
#else
#define TRACE_NATIVE(...) do {} while (0)
Expand Down

0 comments on commit fae99dc

Please sign in to comment.