Procházet zdrojové kódy

gpu: fix several bugs introduced by the tileset refactoring.

legacy
Sam Hocevar sam před 11 roky
rodič
revize
9e236b8946
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      src/tileset.cpp

+ 2
- 2
src/tileset.cpp Zobrazit soubor

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



Načítá se…
Zrušit
Uložit