Skip to content

Commit a5a99e7

Browse files
committed
Loader message
1 parent 48b27e8 commit a5a99e7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

common/src/main/kotlin/com/lambda/graphics/renderer/gui/font/LambdaMoji.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ enum class LambdaMoji(private val zipUrl: String) {
1717
object Loader : Loadable {
1818
override fun load(): String {
1919
LambdaMoji.entries.forEach(LambdaMoji::loadGlyphs)
20-
return "Loaded ${LambdaMoji.entries.size} emoji sets"
20+
return "Loaded ${LambdaMoji.entries.size} emoji pools"
2121
}
2222
}
2323
}

common/src/main/kotlin/com/lambda/graphics/renderer/gui/font/glyph/EmojiGlyphs.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class EmojiGlyphs(zipUrl: String) {
6363

6464
fontTexture = MipmapTexture(image)
6565

66-
LOG.info("Emoji loaded with ${emojiMap.size} characters (${time}ms)")
66+
LOG.info("Loaded $size emojis in $time ms")
6767
}
6868
}
6969

common/src/main/kotlin/com/lambda/graphics/renderer/gui/font/glyph/FontGlyphs.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class FontGlyphs(font: Font) {
5858
fontTexture = MipmapTexture(image)
5959
}
6060

61-
Lambda.LOG.info("Font ${font.fontName} loaded with ${charMap.size} characters (${time}ms)")
61+
Lambda.LOG.info("Font ${font.fontName} loaded with ${charMap.size} characters in $time ms")
6262
}
6363

6464
fun bind() {

0 commit comments

Comments
 (0)