remove debugging lines

pull/3/head
Minizbot2012 4 years ago
parent 2e929dc68f
commit 9b62891e4a
No known key found for this signature in database
GPG Key ID: 977C8ADE12361917

@ -37,7 +37,6 @@ func LoadFile(file fyne.URIReadCloser) *PKM {
b := make([]byte, 2)
file.Read(b)
Asc := keys.GetASCIIForSC(binary.LittleEndian.Uint16(b))
println(string(Asc))
if i < 26 {
if i < 20 {
mapped.MIP[i] = Asc

@ -1,9 +1,6 @@
package keys
import (
"fmt"
"strconv"
"fyne.io/fyne"
)
@ -25,7 +22,6 @@ func GetSCForASCII(r uint16) uint16 {
func init() {
KCToASCII = make(map[Code]rune)
for x, y := range ASCIIToKC {
fmt.Println(string(x) + ":" + strconv.Itoa(int(y)))
KCToASCII[y] = x
}
}

Loading…
Cancel
Save