Skip to content

Commit

Permalink
fixed IMGUI_DEBUG_LOG
Browse files Browse the repository at this point in the history
  • Loading branch information
elect86 committed Nov 25, 2020
1 parent 7c24cae commit fa3d5f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/kotlin/imgui/internal/sections/Macros.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import imgui.DEBUG
import imgui.api.g


fun IMGUI_DEBUG_LOG(fmt: String, vararg args: Any) = println("[%05d] ".format(g.frameCount) + fmt.format(args))
fun IMGUI_DEBUG_LOG(fmt: String, vararg args: Any) = println("[%05d] ".format(g.frameCount) + fmt.format(*args))

// Debug Logging for selected systems. Remove the '((void)0) //' to enable.
fun IMGUI_DEBUG_LOG_POPUP(fmt: String, vararg args: Any) {
Expand Down

0 comments on commit fa3d5f9

Please sign in to comment.