Fix formatting of `compatibility_minimum`

Without quotes the values is parsed as a float, breaking in various cases.
pull/8/head
A Thousand Ships 2023-08-31 16:54:16 +02:00
parent aa093cd429
commit 9e8e06aac7
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
[configuration]
entry_symbol = "example_library_init"
compatibility_minimum = 4.1
compatibility_minimum = "4.1"
[libraries]
@ -20,4 +20,4 @@ linux.release.rv64 = "res://bin/libgdexample.linux.template_release.rv64.so"
android.debug.x86_64 = "res://bin/libgdexample.android.template_debug.x86_64.so"
android.release.x86_64 = "res://bin/libgdexample.android.template_release.x86_64.so"
android.debug.arm64 = "res://bin/libgdexample.android.template_debug.arm64.so"
android.release.arm64 = "res://bin/libgdexample.android.template_release.arm64.so"
android.release.arm64 = "res://bin/libgdexample.android.template_release.arm64.so"