Fix some misleading indentation

This commit is contained in:
Alcaro 2017-01-09 19:26:34 +01:00
parent 7cdfcb44eb
commit 3d600c9f11
2 changed files with 8 additions and 4 deletions

View File

@ -42,8 +42,10 @@
#ifndef BIND_ACTION_LEFT
#define BIND_ACTION_LEFT(cbs, name) \
cbs->action_left = name; \
cbs->action_left_ident = #name;
do { \
cbs->action_left = name; \
cbs->action_left_ident = #name; \
} while(0)
#endif
#ifdef HAVE_SHADER_MANAGER

View File

@ -43,8 +43,10 @@
#ifndef BIND_ACTION_RIGHT
#define BIND_ACTION_RIGHT(cbs, name) \
cbs->action_right = name; \
cbs->action_right_ident = #name;
do { \
cbs->action_right = name; \
cbs->action_right_ident = #name; \
} while(0)
#endif
#ifdef HAVE_SHADER_MANAGER