From 31bb09233b32da56d2e7cbcab9f8be1b0c82898a Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Wed, 21 Apr 2021 19:28:23 -0400 Subject: [PATCH] Update the OS test demo for Godot 3.3 --- misc/os_test/Operating System Testing.csproj | 2 +- misc/os_test/os_test.gd | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/misc/os_test/Operating System Testing.csproj b/misc/os_test/Operating System Testing.csproj index 15818995..8cd19da9 100644 --- a/misc/os_test/Operating System Testing.csproj +++ b/misc/os_test/Operating System Testing.csproj @@ -1,4 +1,4 @@ - + net472 OperatingSystemTesting diff --git a/misc/os_test/os_test.gd b/misc/os_test/os_test.gd index 027c12d8..cee3c441 100644 --- a/misc/os_test/os_test.gd +++ b/misc/os_test/os_test.gd @@ -65,7 +65,6 @@ func _ready(): for i in OS.get_audio_driver_count(): audio_drivers.push_back(OS.get_audio_driver_name(i)) add_line("Available drivers", audio_drivers.join(", ")) - add_line("MIDI inputs", scan_midi_devices()) add_header("Date") add_line("Date and time (local)", datetime_to_string(OS.get_datetime()))