mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-12 22:02:49 +01:00
Make RW_ERROR print to stderr
This commit is contained in:
parent
09c22150a0
commit
f2ca6ed4d1
@ -6,7 +6,7 @@
|
|||||||
#define RW_MESSAGE(msg) \
|
#define RW_MESSAGE(msg) \
|
||||||
std::cout << __FILE__ << ":"<< __LINE__ << ": " << msg << std::endl
|
std::cout << __FILE__ << ":"<< __LINE__ << ": " << msg << std::endl
|
||||||
#define RW_ERROR(msg) \
|
#define RW_ERROR(msg) \
|
||||||
std::cout << __FILE__ << ":"<< __LINE__ << ": " << msg << std::endl
|
std::cerr << __FILE__ << ":"<< __LINE__ << ": " << msg << std::endl
|
||||||
#define RW_CHECK(cond, msg) \
|
#define RW_CHECK(cond, msg) \
|
||||||
if(!(cond)) RW_ERROR(msg)
|
if(!(cond)) RW_ERROR(msg)
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user