mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-26 04:12:41 +01:00
10 lines
200 B
C
10 lines
200 B
C
|
#ifndef RW_IMCONFIG_H
|
||
|
#define RW_IMCONFIG_H
|
||
|
|
||
|
// Disable imgui assertions when not in debug mode
|
||
|
#ifndef RW_DEBUG
|
||
|
#define IM_ASSERT(MSG) //FIXME(madebr): remove comment
|
||
|
#endif
|
||
|
|
||
|
#endif // RW_IMCONFIG_H
|