aboutsummaryrefslogtreecommitdiffstats
path: root/src/implementation.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/implementation.c')
-rw-r--r--src/implementation.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/implementation.c b/src/implementation.c
index e7ae5e4..84d9eea 100644
--- a/src/implementation.c
+++ b/src/implementation.c
@@ -216,18 +216,14 @@ puglSetViewHint(PuglView* view, PuglViewHint hint, int value)
}
}
- if (hint < PUGL_NUM_VIEW_HINTS) {
- view->hints[hint] = value;
- return PUGL_SUCCESS;
- }
-
- return PUGL_BAD_PARAMETER;
+ view->hints[hint] = value;
+ return PUGL_SUCCESS;
}
int
puglGetViewHint(const PuglView* view, PuglViewHint hint)
{
- return (hint < PUGL_NUM_VIEW_HINTS) ? view->hints[hint] : PUGL_DONT_CARE;
+ return view->hints[hint];
}
const char*