finnvoor / PlaydateKit

Create games for Playdate using Swift.

Home Page:https://finnvoor.github.io/PlaydateKit/documentation/playdatekit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Implement `putchar` so `Swift.print` works

finnvoor opened this issue · comments

Will need changes in the Playdate SDK to support:
https://devforum.play.date/t/logtoconsole-without-a-linebreak/1819

@_silgen_name("putchar")
public func putchar(char: CInt) -> CInt {
    var char: [CChar] = [CChar(char), 0]
    System.log(&char)
    return 0
}