mirror of
https://github.com/Mezeporta/Erupe.git
synced 2026-03-22 07:32:32 +01:00
fix(lint): fixing go static check failing.
This commit is contained in:
@@ -31,7 +31,7 @@ func SJISToUTF8(b []byte) string {
|
||||
|
||||
func ToNGWord(x string) []uint16 {
|
||||
var w []uint16
|
||||
for _, r := range []rune(x) {
|
||||
for _, r := range x {
|
||||
if r > 0xFF {
|
||||
t := UTF8ToSJIS(string(r))
|
||||
if len(t) > 1 {
|
||||
|
||||
Reference in New Issue
Block a user