From 48935be0fa723b9ede60dfa5562063834c13eff8 Mon Sep 17 00:00:00 2001 From: JuiceyDev Date: Sat, 28 Mar 2026 19:55:49 +0100 Subject: [PATCH] format meson.options --- meson.options | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/meson.options b/meson.options index 3171bc298..cdf6457be 100644 --- a/meson.options +++ b/meson.options @@ -1,21 +1,27 @@ -option('ui_backend', - type : 'combo', +option( + 'ui_backend', + type: 'combo', choices: ['shiggy', 'java'], - value : 'shiggy', - description : 'Specifies a backend implementation for the game UI.') + value: 'shiggy', + description: 'Specifies a backend implementation for the game UI.', +) option('classic_panorama', type : 'boolean', value : false, description : 'Enable classic java edition panorama (ui_backend=java ONLY).') -option('renderer', - type : 'combo', +option( + 'renderer', + type: 'combo', choices: ['gl3', 'gles'], - value : 'gl3', - description : 'Specifies a rendering implementation for the game.') + value: 'gl3', + description: 'Specifies a rendering implementation for the game.', +) -option('enable_vsync', - type : 'boolean', - value : true, - description : 'Toggles V-Sync and adds options to unlock maximum in-game framerate.') +option( + 'enable_vsync', + type: 'boolean', + value: true, + description: 'Toggles V-Sync and adds options to unlock maximum in-game framerate.', +) \ No newline at end of file