[retro-gtk] input: Remove input device types that don't exist anymore



commit 34c397761e3b51a1537eac18308cd7a254ab684b
Author: Bastien Nocera <hadess hadess net>
Date:   Thu Feb 16 08:38:11 2017 +0100

    input: Remove input device types that don't exist anymore
    
    There aren't any separate device types for "multitap" or variants of
    lightguns, remove them.

 retro-gtk/input/device.vala |   48 -------------------------------------------
 1 files changed, 0 insertions(+), 48 deletions(-)
---
diff --git a/retro-gtk/input/device.vala b/retro-gtk/input/device.vala
index 88e4952..a8ba783 100644
--- a/retro-gtk/input/device.vala
+++ b/retro-gtk/input/device.vala
@@ -100,54 +100,6 @@ public enum DeviceType {
        POINTER = 6,
 
        /**
-        * A joypad multitap.
-        *
-        * It is a specialization of the {@link DeviceType.JOYPAD}.
-        *
-        * It should only be used in {@link Core.set_controller_port_device} to inform Libretro
-        * implementations about use of a joypad multitap.
-        *
-        * In input state callback, however, the device will be {@link DeviceType.JOYPAD}.
-        */
-       JOYPAD_MULTITAP = (1 << 8) | DeviceType.JOYPAD,
-
-       /**
-        * A Super Nintendo Super Scope.
-        *
-        * It is a specialization of the {@link DeviceType.LIGHTGUN}.
-        *
-        * It should only be used in {@link Core.set_controller_port_device} to inform Libretro
-        * implementations about use of a Super Nintendo Super Scope.
-        *
-        * In input state callback, however, the device will be {@link DeviceType.LIGHTGUN}.
-        */
-       LIGHTGUN_SUPER_SCOPE = (1 << 8) | DeviceType.LIGHTGUN,
-
-       /**
-        * A Konami Justifier.
-        *
-        * It is a specialization of the {@link DeviceType.LIGHTGUN}.
-        *
-        * It should only be used in {@link Core.set_controller_port_device} to inform Libretro
-        * implementations about use of a Konami Justifier.
-        *
-        * In input state callback, however, the device will be {@link DeviceType.LIGHTGUN}.
-        */
-       LIGHTGUN_JUSTIFIER = (2 << 8) | DeviceType.LIGHTGUN,
-
-       /**
-        * Konami Justifiers.
-        *
-        * It is a specialization of the {@link DeviceType.LIGHTGUN}.
-        *
-        * It should only be used in {@link Core.set_controller_port_device} to inform Libretro
-        * implementations about use of Konami Justifiers.
-        *
-        * In input state callback, however, the device will be {@link DeviceType.LIGHTGUN}.
-        */
-       LIGHTGUN_JUSTIFIERS = (3 << 8) | DeviceType.LIGHTGUN;
-
-       /**
         * Gets the basic type of a device type.
         *
         * Applies the type mask on a DeviceType to get its basic type.


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]