feat: accent and dieresi characters properly detected

This commit is contained in:
Gerard Gascón 2024-04-16 21:07:56 +02:00
parent 6b289eecfd
commit ea6745e30d
5 changed files with 14 additions and 2 deletions

View file

@ -3,6 +3,6 @@ using System.Linq;
namespace Domain.Input {
public class EObertaReader : SequentialInputReader {
public EObertaReader(KeyHistory history) : base(history, new List<int>{ 0xBA, 0x45 }) { }
public EObertaReader(KeyHistory history) : base(history, new List<int>{ 0xBA, 0x45 }, 0x10, false) { }
}
}