Переглянути джерело

data: fix ascii.png search path.

legacy
Sam Hocevar sam 12 роки тому
джерело
коміт
951c93ab84
2 змінених файлів з 5 додано та 5 видалено
  1. +2
    -2
      src/debug/fps.cpp
  2. +3
    -3
      tutorial/11_fractal.cpp

+ 2
- 2
src/debug/fps.cpp Переглянути файл

@@ -44,12 +44,12 @@ DebugFps::DebugFps(int x, int y)
#if 0
for (int i = 0; i < 5; i ++)
{
data->lines[i] = new Text(NULL, "src/gfx/font/ascii.png");
data->lines[i] = new Text(NULL, "src/data/font/ascii.png");
data->lines[i]->SetPos(ivec3(x, y + (i ? 8 : 0) + 16 * i, 0));
Ticker::Ref(data->lines[i]);
}
#else
data->lines[0] = new Text(NULL, "src/gfx/font/ascii.png");
data->lines[0] = new Text(NULL, "src/data/font/ascii.png");
data->lines[0]->SetPos(ivec3(x, y, 100));
Ticker::Ref(data->lines[0]);
#endif


+ 3
- 3
tutorial/11_fractal.cpp Переглянути файл

@@ -140,15 +140,15 @@ public:
}

#if !defined __native_client__
m_centertext = new Text(NULL, "src/gfx/font/ascii.png");
m_centertext = new Text(NULL, "src/data/font/ascii.png");
m_centertext->SetPos(ivec3(5, m_window_size.y - 15, 1));
Ticker::Ref(m_centertext);

m_mousetext = new Text(NULL, "src/gfx/font/ascii.png");
m_mousetext = new Text(NULL, "src/data/font/ascii.png");
m_mousetext->SetPos(ivec3(5, m_window_size.y - 29, 1));
Ticker::Ref(m_mousetext);

m_zoomtext = new Text(NULL, "src/gfx/font/ascii.png");
m_zoomtext = new Text(NULL, "src/data/font/ascii.png");
m_zoomtext->SetPos(ivec3(5, m_window_size.y - 43, 1));
Ticker::Ref(m_zoomtext);
#endif


Завантаження…
Відмінити
Зберегти