aboutsummaryrefslogtreecommitdiff
path: root/src/object.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/object.cpp')
-rw-r--r--src/object.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/object.cpp b/src/object.cpp
index 4c1f3ca..9176b49 100644
--- a/src/object.cpp
+++ b/src/object.cpp
@@ -45,6 +45,10 @@ Gats::Object *Gats::Object::read( Bu::Stream &rIn )
45 pObj = new Gats::Dictionary(); 45 pObj = new Gats::Dictionary();
46 break; 46 break;
47 47
48 case 'f':
49 pObj = new Gats::Float();
50 break;
51
48 case 'e': 52 case 'e':
49 return NULL; 53 return NULL;
50 54