diff options
author | David Robillard <d@drobilla.net> | 2021-05-03 14:46:09 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-05-03 18:30:39 -0400 |
commit | bd7dbdec48a48a70b8f380a928325291c53ecaf0 (patch) | |
tree | 96bc96c530bf851e590067784b71719c1e58807d /src | |
parent | 1b5cc87acd7cd6e12baab2f5b550b0d69f1361d5 (diff) | |
download | pugl-bd7dbdec48a48a70b8f380a928325291c53ecaf0.tar.gz pugl-bd7dbdec48a48a70b8f380a928325291c53ecaf0.tar.bz2 pugl-bd7dbdec48a48a70b8f380a928325291c53ecaf0.zip |
Shrink puglGetViewHint() implementation
Diffstat (limited to 'src')
-rw-r--r-- | src/implementation.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/implementation.c b/src/implementation.c index d3a6647..4fe6a8a 100644 --- a/src/implementation.c +++ b/src/implementation.c @@ -222,11 +222,7 @@ puglSetViewHint(PuglView* view, PuglViewHint hint, int value) int puglGetViewHint(const PuglView* view, PuglViewHint hint) { - if (hint < PUGL_NUM_VIEW_HINTS) { - return view->hints[hint]; - } - - return PUGL_DONT_CARE; + return (hint < PUGL_NUM_VIEW_HINTS) ? view->hints[hint] : PUGL_DONT_CARE; } PuglStatus |