MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / sendEmuLetterKey

Method sendEmuLetterKey

gui/qt/mainwindow.cpp:1117–1125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1115}
1116
1117void MainWindow::sendEmuLetterKey(char letter) {
1118 if (letter >= '0' && letter <= '9') {
1119 sendEmuKey(0x8E + letter - '0');
1120 } else if (letter >= 'A' && letter <= 'Z') {
1121 sendEmuKey(0x9A + letter - 'A');
1122 } else if (letter == 'Z' + 1 || letter == '@') { /* [ or @ for theta (caller should replace it) */
1123 sendEmuKey(0xCC);
1124 }
1125}
1126
1127void MainWindow::optSend(CEmuOpts &o) {
1128 int speed = m_config->value(SETTING_EMUSPEED).toInt();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected