diff options
| author | xHire <xHire@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-07-07 11:04:41 +0000 |
|---|---|---|
| committer | xHire <xHire@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-07-07 11:04:41 +0000 |
| commit | e8af9a2ecae53d00c2c335ac76802966c3681342 (patch) | |
| tree | a93b2acae1a6c94aafb1f00602c51a5e97b24653 /src/modules/modAI.c | |
| parent | 24eaa3195f6f7ab7f8dbf68ba6ccb5340df7d2a8 (diff) | |
- fixed problem with PREFIX
- fixed problem when compiling without sound
git-svn-id: http://opensvn.csie.org/tuxanci_ng@114 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/modules/modAI.c')
| -rwxr-xr-x | src/modules/modAI.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/modules/modAI.c b/src/modules/modAI.c index 53f689e..d244aa3 100755 --- a/src/modules/modAI.c +++ b/src/modules/modAI.c @@ -13,12 +13,10 @@ #include "space.h" #ifndef PUBLIC_SERVER -#include "interface.h" -#include "image.h" -#endif - -#ifdef PUBLIC_SERVER -#include "publicServer.h" + #include "interface.h" + #include "image.h" +#else + #include "publicServer.h" #endif static export_fce_t *export_fce; @@ -35,7 +33,6 @@ int init(export_fce_t *p) } #ifndef PUBLIC_SERVER - int draw(int x, int y, int w, int h) { return 0; |