Replies: 3 comments 3 replies
-
hi @koimark could you please make a photo of your physical keyboard and paste that into here ? That would help to identify what is going on with the * key 🙃 |
Beta Was this translation helpful? Give feedback.
-
Here is picture of keyboard. *-character is left side o return - top of '-character. But when try that in emulator I got the same @-character. (Normal place for @-characters is OPTION+2 - that does not do anything in emulator) Keyboard information from system report: |
Beta Was this translation helpful? Give feedback.
-
Hmm, that's strange (and probably hard to debug without a Finnish keyboard). In symbolic mode, it shouldn't make any difference where the func keyDown(with event: NSEvent) {
// Intercept if the console is open
if renderer.console.isVisible { renderer.console.keyDown(with: event); return }
// Ignore repeating keys
if event.isARepeat { return }
// Exit fullscreen mode if escape key is pressed
if event.keyCode == kVK_Escape && renderer.fullscreen && pref.exitOnEsc {
parent.window!.toggleFullScreen(nil)
return
}
// Ignore keys that are pressed in combination with the Command key
if event.modifierFlags.contains(NSEvent.ModifierFlags.command) { return }
keyDown(with: MacKey(event: event))
} |
Beta Was this translation helpful? Give feedback.
-
I have Finnish version of macOS - now newest Ventura but problems was earlier too - using VICE instead but VirtualC64 offers better UI so I occasionally try again. I have changed character roms and keyboard layouts etc but same happens: * character is missing I got @ instead. I even tried positional mapping and choose key manually but still in emulator I got @. That annoyes because menu option "Load First File" I got:
"Load "@",8,1" instead the correct one "Load"*",8,1
I have used character roms found in zimmers.net
Beta Was this translation helpful? Give feedback.
All reactions