changeset 870:79b2d56aa27a

fix SceneGraphRoot::set_game_task.
author tkaito
date Tue, 29 Jun 2010 04:23:52 +0900
parents bcc81531a672
children ab3cd3aeacff
files Renderer/Engine/SceneGraphRoot.cc
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Renderer/Engine/SceneGraphRoot.cc	Sun Jun 27 23:01:44 2010 +0900
+++ b/Renderer/Engine/SceneGraphRoot.cc	Tue Jun 29 04:23:52 2010 +0900
@@ -703,8 +703,8 @@
 { 
   HTask *task = sgroot->tmanager->create_task(id);
   task->set_cpu(SPE_ANY);
-  task->add_inData(property, size*16);
-  task->add_outData(property, size*16);
+  task->add_inData(property, size);
+  task->add_outData(property, size);
   task->add_param((memaddr)1);
   task->set_post(post_func, (void*)property, 0);
   task->spawn();