Bläddra i källkod

gpu: fix several bugs introduced by the tileset refactoring.

legacy
Sam Hocevar sam 11 år sedan
förälder
incheckning
9e236b8946
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. +2
    -2
      src/tileset.cpp

+ 2
- 2
src/tileset.cpp Visa fil

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



Laddar…
Avbryt
Spara