From e0ea45636a92887bcec52051af5cf264e4086acb Mon Sep 17 00:00:00 2001 From: otya128 Date: Tue, 27 Dec 2016 13:41:23 +0900 Subject: [PATCH] Fix DataType --- SMILEBASIC/data.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SMILEBASIC/data.d b/SMILEBASIC/data.d index 878bfea..0ad3676 100644 --- a/SMILEBASIC/data.d +++ b/SMILEBASIC/data.d @@ -2,9 +2,9 @@ module otya.smilebasic.data; enum DataType : byte { - ushort_, - int_, - double_ + ushort_ = 3, + int_ = 4, + double_ = 5 } align(1) struct DataHeader