我有一个名为 config.h 的文件,其中包含以下内容...
#define GL_DOOM
然后我在另一个文件 m_misc.c 中有以下内容...
#include "config.h"
...
#if ((defined GL_DOOM) && (defined _MSC_VER))
LOGD("Using glboom-plus.cfg");
#define BOOM_CFG "glboom-plus.cfg"
#else
LOGD("Using prboom-plus.cfg");
#define BOOM_CFG "prboom-plus.cfg"
#endif
但它说...
05-02 14:40:24.789:D/Doom(2966):使用 prboom-plus.cfg
这里有什么交易?我是 C 新手,所以我错过了什么?