Files
yggm/libs/defines.h
rcxpony ab6061f5bf owo
2025-08-21 13:05:05 +05:00

14 lines
282 B
C

#ifndef __DEFINES_H
#define __DEFINES_H
#ifdef DEBUG
#define __BUILDTYPE__ "Debug"
#define THREADSPB 1
#define THDIVTHPB 1
#define WHCOND x < 0xFFFFFFFF
#else
#define __BUILDTYPE__ "Release"
#define THREADSPB 256
#define THDIVTHPB (tTh / THREADSPB)
#define WHCOND true
#endif
#endif