From 6ee311dc8dd57dcded1a98fc8324e24d679ae6cd Mon Sep 17 00:00:00 2001
From: Tibor Nagy <xnagytibor@gmail.com>
Date: Sun, 6 May 2018 04:28:18 +0200
Subject: [PATCH] sdl: Revert unicode fix

---
 recipes/sdl/01_orbital.patch | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/recipes/sdl/01_orbital.patch b/recipes/sdl/01_orbital.patch
index 0dc4efe44..02e2f7996 100644
--- a/recipes/sdl/01_orbital.patch
+++ b/recipes/sdl/01_orbital.patch
@@ -69,7 +69,7 @@ diff -rupNw source-original/include/SDL_config.h.in source/include/SDL_config.h.
 diff -rupNw source-original/src/video/orbital/SDL_orbitalevents.c source/src/video/orbital/SDL_orbitalevents.c
 --- source-original/src/video/orbital/SDL_orbitalevents.c	1970-01-01 01:00:00.000000000 +0100
 +++ source/src/video/orbital/SDL_orbitalevents.c	2018-05-01 17:31:52.770229654 +0200
-@@ -0,0 +1,198 @@
+@@ -0,0 +1,197 @@
 +/*
 +    SDL - Simple DirectMedia Layer
 +    Copyright (C) 1997-2012 Sam Lantinga
@@ -110,7 +110,6 @@ diff -rupNw source-original/src/video/orbital/SDL_orbitalevents.c source/src/vid
 +static bool last_button_middle = false;
 +static bool last_button_right = false;
 +
-+// TODO: Find out why NetSurf recieves NULL chars when the keysym.unicode field is used
 +void ORBITAL_PumpEvents(_THIS)
 +{
 +    SDL_keysym keysym;
@@ -121,7 +120,7 @@ diff -rupNw source-original/src/video/orbital/SDL_orbitalevents.c source/src/vid
 +    while (oeo.tag != OrbEventOption_None) {
 +        switch (oeo.tag) {
 +            case OrbEventOption_Key:
-+                //keysym.unicode = oeo.key.character;
++                keysym.unicode = oeo.key.character;
 +                keysym.scancode = oeo.key.scancode;
 +                keysym.sym = keymap[oeo.key.scancode];
 +                keysym.mod = KMOD_NONE;
-- 
GitLab