VX tilemap has 9 bitmaps

This commit is contained in:
cremno 2014-09-12 15:15:16 +02:00
parent a365a7a754
commit 6abc207f1e
1 changed files with 3 additions and 3 deletions

View File

@ -58,8 +58,8 @@ RB_METHOD(tilemapVXInitialize)
VALUE autotilesObj = rb_iv_get(self, "bitmap_array");
VALUE ary = rb_ary_new2(7);
for (int i = 0; i < 7; ++i)
VALUE ary = rb_ary_new2(9);
for (int i = 0; i < 9; ++i)
rb_ary_push(ary, Qnil);
rb_iv_set(autotilesObj, "array", ary);
@ -119,7 +119,7 @@ RB_METHOD(tilemapVXBitmapsGet)
int i;
rb_get_args (argc, argv, "i", &i RB_ARG_END);
if (i < 0 || i > 6)
if (i < 0 || i > 8)
return Qnil;
VALUE ary = rb_iv_get(self, "array");