mirror of
https://github.com/DarkStore-3DS/Universal-Core.git
synced 2026-07-03 00:39:23 +00:00
Fix compilation error.
This commit is contained in:
+6
-6
@@ -290,22 +290,22 @@ ITCM_CODE void Font::print(std::u16string_view text, int x, int y, bool top, int
|
||||
if(rtl) {
|
||||
switch(*it) {
|
||||
case '(':
|
||||
index = getCharIndex(')');
|
||||
index = charIndex(')');
|
||||
break;
|
||||
case ')':
|
||||
index = getCharIndex('(');
|
||||
index = charIndex('(');
|
||||
break;
|
||||
case '[':
|
||||
index = getCharIndex(']');
|
||||
index = charIndex(']');
|
||||
break;
|
||||
case ']':
|
||||
index = getCharIndex('[');
|
||||
index = charIndex('[');
|
||||
break;
|
||||
case '<':
|
||||
index = getCharIndex('>');
|
||||
index = charIndex('>');
|
||||
break;
|
||||
case '>':
|
||||
index = getCharIndex('<');
|
||||
index = charIndex('<');
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user