1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 06:52:34 +02:00

Fix missing space in RW_UNIMPLEMENTED macro

This commit is contained in:
Daniel Evans 2016-06-19 00:51:08 +01:00
parent d1cbdaff94
commit 7394622489

View File

@ -19,6 +19,6 @@
(void) var
#define RW_UNIMPLEMENTED(msg) \
RW_MESSAGE("Unimplemented" << msg)
RW_MESSAGE("Unimplemented: " << msg)
#endif