Skip to content

Commit 1ae79f3

Browse files
committed
Remove OutputDebugString call from script interpreter on non-Windows platforms
1 parent 53fa788 commit 1ae79f3

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

kauai/src/screxe.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,10 @@ bool SCEB::FAttachScript(PSCPT pscpt, int32_t *prglw, int32_t clw)
174174
}
175175

176176
stnTrace.FAppendCh(ChLit('\n'));
177+
// FUTURE: Add script logging for non-Windows platforms if needed
178+
#ifdef WIN
177179
OutputDebugString(stnTrace.Psz());
180+
#endif // WIN
178181
}
179182
#endif // DEBUG
180183

0 commit comments

Comments
 (0)