Mercurial > hg > Members > kono > Cerium
diff Renderer/Engine/task/DataUpdate.cc @ 823:01b6d924a560
64bit (int) -> (long)
author | tkaito |
---|---|
date | Mon, 24 May 2010 18:15:43 +0900 |
parents | 4455e7b0caf3 |
children | e40dd2384357 |
line wrap: on
line diff
--- a/Renderer/Engine/task/DataUpdate.cc Sun May 23 17:14:50 2010 +0900 +++ b/Renderer/Engine/task/DataUpdate.cc Mon May 24 18:15:43 2010 +0900 @@ -10,8 +10,8 @@ run(SchedTask *s, void *rbuf, void *wbuf) { void *idata = (void*)s->get_input(rbuf, 0); - int size = (int)s->get_param(0); - int load_id = (int)s->get_param(1); + long size = (long)s->get_param(0); + long load_id = (long)s->get_param(1); void *global_data = (void*)s->global_get(load_id); memcpy(global_data,idata,size);