瀏覽代碼

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;
}



Loading…
取消
儲存