diff options
author | David Robillard <d@drobilla.net> | 2023-01-08 12:54:54 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-01-08 12:54:54 -0500 |
commit | 1e8431373a494c27c74e34bfa7ab0247e3c29677 (patch) | |
tree | 8cb27dc3a25ab49e2a76a33995e2efeab9f73f8f /src/common.c | |
parent | a3ccd8a4c5125bd12c017261ffdbc0de7759d62b (diff) | |
download | pugl-1e8431373a494c27c74e34bfa7ab0247e3c29677.tar.gz pugl-1e8431373a494c27c74e34bfa7ab0247e3c29677.tar.bz2 pugl-1e8431373a494c27c74e34bfa7ab0247e3c29677.zip |
Add missing default hint
Diffstat (limited to 'src/common.c')
-rw-r--r-- | src/common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common.c b/src/common.c index 663cf28..9bb2d2e 100644 --- a/src/common.c +++ b/src/common.c @@ -92,6 +92,7 @@ static void puglSetDefaultHints(PuglHints hints) { hints[PUGL_USE_COMPAT_PROFILE] = PUGL_TRUE; + hints[PUGL_USE_DEBUG_CONTEXT] = PUGL_FALSE; hints[PUGL_CONTEXT_VERSION_MAJOR] = 2; hints[PUGL_CONTEXT_VERSION_MINOR] = 0; hints[PUGL_RED_BITS] = 8; |