diff options
author | José Fonseca <[email protected]> | 2008-05-01 00:59:12 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-05-01 02:25:23 +0900 |
commit | cafb545721e6c9479c07d3a7a891236e006d3376 (patch) | |
tree | f1a6c508912ecb3019d38cd7fc7f922cefddceb5 /src/gallium/auxiliary/util/p_debug.c | |
parent | c9acd439b1af4b037ded324139664cf9832930f8 (diff) |
d3d: Windows miniport driver portability fixes.
Diffstat (limited to 'src/gallium/auxiliary/util/p_debug.c')
-rw-r--r-- | src/gallium/auxiliary/util/p_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/p_debug.c b/src/gallium/auxiliary/util/p_debug.c index 8ef28801913..56eecaab622 100644 --- a/src/gallium/auxiliary/util/p_debug.c +++ b/src/gallium/auxiliary/util/p_debug.c @@ -104,7 +104,7 @@ void _debug_break(void) __asm("int3"); #elif (defined(__i386__) || defined(__386__)) && defined(__MSC__) _asm {int 3}; -#elif defined(PIPE_SUBSYSTEM_WINDOWS_DISPLAY) && !defined(WINCE) +#elif defined(PIPE_SUBSYSTEM_WINDOWS_DISPLAY) EngDebugBreak(); #else abort(); |