GSdx: Small fix.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2298 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2009-12-03 23:30:59 +00:00
parent 620c93cad7
commit 60fd4beb5f
1 changed files with 2 additions and 1 deletions

View File

@ -33,9 +33,10 @@
// Set this to 1 to remove a lot of non-const div/modulus ops from the rasterization process.
// Might likely be a measurable speedup but limits threading to 1, 2, 4, and 8 threads.
// note by rama: Speedup is around 5% on average.
#define UseConstThreadCount 0
#if !UseConstThreadCount
#if UseConstThreadCount
// ThreadsConst - const number of threads. User-configured threads (in GSdx panel) must match
// this value if UseConstThreadCount is enabled. [yeah, it's hacky for now]
static const int ThreadsConst = 2;