浏览代码

gpu: fix several bugs introduced by the tileset refactoring.

legacy
Sam Hocevar sam 11 年前
父节点
当前提交
9e236b8946
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      src/tileset.cpp

+ 2
- 2
src/tileset.cpp 查看文件

@@ -80,8 +80,8 @@ TileSet::TileSet(char const *path, ivec2 size, ivec2 count)
{
if (size.x <= 0 || size.y <= 0)
size = ivec2(32, 32);
m_data->count.x = m_data->m_image_size.x / max(size.x, m_data->m_image_size.x);
m_data->count.y = m_data->m_image_size.y / max(size.y, m_data->m_image_size.y);
m_data->count.x = m_data->m_image_size.x / min(size.x, m_data->m_image_size.x);
m_data->count.y = m_data->m_image_size.y / min(size.y, m_data->m_image_size.y);
m_data->m_tile_size = size;
}



正在加载...
取消
保存