Added PSP res file, fixed bug for PSP version and added M20, MH1 and UST sets and primitives.

This commit is contained in:
valfieri
2019-08-10 01:10:26 +02:00
parent 3d9526a1dd
commit 7328c45013
81 changed files with 52714 additions and 24437 deletions

View File

@@ -1,11 +1,11 @@
#!/usr/bin/ruby -w
require 'iconv'
c = Iconv.new('UTF-8', 'WINDOWS-1252')
line = 0
while l = gets
line += 1
if l.match(/[\x80-\xFF]/)
puts line.to_s + " : " + c.iconv(l.gsub(/([\x80-\xFF])/, '\\1'))
end
end
#!/usr/bin/ruby -w
require 'iconv'
c = Iconv.new('UTF-8', 'WINDOWS-1252')
line = 0
while l = gets
line += 1
if l.match(/[\x80-\xFF]/)
puts line.to_s + " : " + c.iconv(l.gsub(/([\x80-\xFF])/, '\\1'))
end
end