ソースを参照

font: coding style ☜(゚ヮ゚☜)

undefined
Jean-Yves Lamoureux Sam Hocevar <sam@hocevar.net> 11年前
コミット
8e544d0815
1個のファイルの変更4行の追加2行の削除
  1. +4
    -2
      src/font.cpp

+ 4
- 2
src/font.cpp ファイルの表示

@@ -74,12 +74,14 @@ void Font::Print(vec3 pos, char const *str, vec2 scale)
{
uint32_t ch = (uint8_t)*str++;

if(ch == '\n')
if (ch == '\n')
{
pos.x = origin_x;
pos.y-=data->size.y * scale.y;
continue;
}else if (ch != ' '){
}
else if (ch != ' ')
{
g_scene->AddTile(data->tileset, ch & 255, pos, 0, scale);
}
pos.x += data->size.x * scale.x;


読み込み中…
キャンセル
保存