Explorar el Código

Set TextBox::InputMode fixed values

Marc Plano-Lesay hace 12 años
padre
commit
7d8a86fc7e
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      gameplay/src/TextBox.h

+ 2 - 2
gameplay/src/TextBox.h

@@ -47,12 +47,12 @@ public:
 		/**
 		 * Text: Text is displayed directly.
 		 */
-		TEXT,
+		TEXT = 0x01,
 
 		/**
 		 * Password: Text is replaced by _passwordChar, which is '*' by default.
 		 */
-		PASSWORD
+		PASSWORD = 0x02
 	};
 
     /**