Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/studio/studio.c
Original file line number Diff line number Diff line change
Expand Up @@ -432,10 +432,10 @@ char getKeyboardText(Studio* studio)
tic80_input* input = &tic->ram->input;

#ifdef KEYBOARD_LAYOUT_ES
// US KEYS: " abcdefghijklmnopqrstuvwxyz0123456789-=[]\\;'`,./< ";
static const char Symbols[] = " abcdefghijklmnopqrstuvwxyz0123456789'!`+cn'o,.-< ";
static const char Shift[] = " ABCDEFGHIJKLMNOPQRSTUVWXYZ=!\" $%&/()??^*CN\"a;:_> ";
static const char Alt[] = " |@# []} {\\ ";
// US KEYS: " abcdefghijklmnopqrstuvwxyz0123456789-=[]\\;'`,./ ";
static const char Symbols[] = " abcdefghijklmnopqrstuvwxyz0123456789'!`+cn'o,.- ";
static const char Shift[] = " ABCDEFGHIJKLMNOPQRSTUVWXYZ=!\" $%&/()??^*CN\"a;:_ ";
static const char Alt[] = " |@# []} {\\ ";
#else
static const char Symbols[] = " abcdefghijklmnopqrstuvwxyz0123456789-=[]\\;'`,./ ";
static const char Shift[] = " ABCDEFGHIJKLMNOPQRSTUVWXYZ)!@#$%^&*(_+{}|:\"~<>? ";
Expand Down