1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 02:15:17 +08:00

Method name update.

This commit is contained in:
Dean Herbert 2017-02-08 16:01:48 +09:00
parent 417b0817a9
commit 06695dbf9b
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49

View File

@ -19,7 +19,7 @@ namespace osu.Game.Graphics.Sprites
TextSize = FONT_SIZE; TextSize = FONT_SIZE;
} }
protected override Drawable GetUndrawableCharacter() protected override Drawable CreateFallbackCharacterDrawable()
{ {
var tex = GetTextureForCharacter('?'); var tex = GetTextureForCharacter('?');
@ -37,7 +37,7 @@ namespace osu.Game.Graphics.Sprites
}; };
} }
return base.GetUndrawableCharacter(); return base.CreateFallbackCharacterDrawable();
} }
} }
} }