diff options
author | George Sapountzis <gsap7@yahoo.gr> | 2006-10-03 00:32:22 +0300 |
---|---|---|
committer | George Sapountzis <gsap7@yahoo.gr> | 2006-10-03 00:33:20 +0300 |
commit | cd900580dbc8928ebc28514162b4c1dbfe9fd5ae (patch) | |
tree | faddd0f37839899bea7e1a6543d9040ff6a22462 /src/aticonfig.c | |
parent | 22860a3c0685a25f982983654303ad02aedc02ec (diff) |
[mach64] Fix build for !defined(USE_EXA).
Diffstat (limited to 'src/aticonfig.c')
-rw-r--r-- | src/aticonfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aticonfig.c b/src/aticonfig.c index ae43ded..7c8f0cb 100644 --- a/src/aticonfig.c +++ b/src/aticonfig.c @@ -361,8 +361,8 @@ ATIProcessOptions "Using %s acceleration architecture\n", pATI->useEXA ? "EXA" : "XAA"); - pATI->RenderAccelEnabled = FALSE; #if defined(USE_EXA) + pATI->RenderAccelEnabled = FALSE; if (pATI->useEXA && RenderAccel) pATI->RenderAccelEnabled = TRUE; #endif |