diff io.h @ 1650:d6c403135e64

Re-order IO device type enum so "None" is selected when no device is specified for a port
author Michael Pavone <pavone@retrodev.com>
date Mon, 24 Dec 2018 11:11:24 -0800
parents c206a422d466
children e7a516f08cec
line wrap: on
line diff
--- a/io.h	Tue Dec 18 19:58:00 2018 -0800
+++ b/io.h	Mon Dec 24 11:11:24 2018 -0800
@@ -11,6 +11,7 @@
 #include "serialize.h"
 
 enum {
+	IO_NONE,
 	IO_GAMEPAD2,
 	IO_GAMEPAD3,
 	IO_GAMEPAD6,
@@ -23,8 +24,7 @@
 	IO_EA_MULTI_A,
 	IO_EA_MULTI_B,
 	IO_SEGA_PARALLEL,
-	IO_GENERIC,
-	IO_NONE
+	IO_GENERIC
 };
 
 typedef struct {