diff options
author | Simon Howard | 2009-06-07 01:32:15 +0000 |
---|---|---|
committer | Simon Howard | 2009-06-07 01:32:15 +0000 |
commit | 7f9b5d41173c7db6465a5f7666fe7913106a8c1c (patch) | |
tree | 8d8accd955c7a660f7b41780192cc69686db8d15 /src | |
parent | 203e7e79a1a20b83fea8a91b46c8241c056a23b1 (diff) | |
download | chocolate-doom-7f9b5d41173c7db6465a5f7666fe7913106a8c1c.tar.gz chocolate-doom-7f9b5d41173c7db6465a5f7666fe7913106a8c1c.tar.bz2 chocolate-doom-7f9b5d41173c7db6465a5f7666fe7913106a8c1c.zip |
Add CPU affinity function for Windows CE.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1558
Diffstat (limited to 'src')
-rw-r--r-- | src/i_main.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/i_main.c b/src/i_main.c index 3a9ec696..e1de5881 100644 --- a/src/i_main.c +++ b/src/i_main.c @@ -34,7 +34,15 @@ #include "m_argv.h" #include "d_main.h" -#if defined(_WIN32) +#if defined(_WIN32_WCE) + +// Windows CE? I doubt it even supports SMP.. + +static void LockCPUAffinity(void) +{ +} + +#elif defined(_WIN32) #define WIN32_LEAN_AND_MEAN #include <windows.h> |