From e145de89b120890d94577c96b015bccc00f17646 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 10 Oct 2025 11:23:48 +0200 Subject: [PATCH] fixed '?' not working in Seuphorica (although in SDL2 it would be better to actually use SDL2 text input) --- rogueviz/seuphorica.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/rogueviz/seuphorica.cpp b/rogueviz/seuphorica.cpp index 5bbb8eed..f3c57988 100644 --- a/rogueviz/seuphorica.cpp +++ b/rogueviz/seuphorica.cpp @@ -1166,6 +1166,7 @@ void seuphorica_dictionary() { dialog::addHelp(fix(str_dict_help)); keyhandler = [] (int sym, int uni) { + if(uni == '/') uni = '?'; if(among(uni, '$', '?', '.')) { dialog::infix += uni; return; } dialog::handleNavigation(sym, uni); if(dialog::editInfix(uni)) dialog::list_skip = 0;