summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2022-03-19 14:55:30 -0700
committerVito Caputo <vcaputo@pengaru.com>2022-03-19 14:55:30 -0700
commit7c66d87c82ac6b06901e7cb39ed90db43bc4b053 (patch)
tree83a0f8bbb54e00ed4b340333fd3af947a32db438 /src/main.c
parentf08356c4d204b07847a1d550b2acda44a897f970 (diff)
*: de-constify til_setting_t throughout
Now that til_setting_t.desc is not only a thing, but a thing that is intended to be refreshed regularly in the course of things like GUI interactive settings construction, it's not really appropriate to try even act like this these are const anymore.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 28601e9..c6b0362 100644
--- a/src/main.c
+++ b/src/main.c
@@ -56,10 +56,10 @@ typedef struct setup_t {
*/
/* select video backend if not yet selected, then setup the selected backend. */
-static int setup_video(til_settings_t *settings, const til_setting_t **res_setting, const til_setting_desc_t **res_desc)
+static int setup_video(til_settings_t *settings, til_setting_t **res_setting, const til_setting_desc_t **res_desc)
{
- const til_setting_t *setting;
- const char *video;
+ til_setting_t *setting;
+ const char *video;
video = til_settings_get_key(settings, 0, &setting);
if (!video || !setting->desc) {
© All Rights Reserved