From 3852f164d2bb98d531c6cbcf9a206bf8022442db Mon Sep 17 00:00:00 2001 From: Jehan Date: Sun, 13 Nov 2022 22:21:14 +0100 Subject: [PATCH] modules: fix typo in meson build. This explains such WARNING over a previous installation on Windows: > (gimp-2.99.exe:11524): GLib-GObject-WARNING **: 21:36:36.664: Two different plugins tried to register 'ControllerDXDInput'. The previous install was autotools-built, so it didn't have the typo. --- modules/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/meson.build b/modules/meson.build index ad16b63619..f7e9992dc0 100644 --- a/modules/meson.build +++ b/modules/meson.build @@ -62,7 +62,7 @@ endif if directx.found() modules += { - 'name': 'controller-dx-input', + 'name': 'controller-dx-dinput', 'srcs': [ 'controller-dx-dinput.c', 'gimpinputdevicestore-dx.c', ], 'deps': directx, 'link': [ controller_libs, ],