GAMOS: Rename GetScummCode->getScummCode and GetWinCode->getWinCode

This commit is contained in:
Marisa-Chan
2025-12-25 13:09:36 +07:00
parent b72fbab5d5
commit 001ca83781
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -271,10 +271,10 @@ protected:
void setCPTable(const uint16 *table, uint16 size, uint16 offset = 0x80);
public:
uint8 GetWinCode(uint16 code) {
uint8 getWinCode(uint16 code) const {
return _winCodes[code];
};
uint16 GetScummCode(uint8 code) {
uint16 getScummCode(uint8 code) const {
return _scummCodes[code];
};
+1 -1
View File
@@ -33,7 +33,7 @@ void SystemProc::processMessage(const Common::Event &ev) {
_ascii = ev.kbd.ascii;
winKey = _codesConverter->GetWinCode(ev.kbd.keycode);
winKey = _codesConverter->getWinCode(ev.kbd.keycode);
if (winKey == KeyCodes::WIN_BACK ||
winKey == KeyCodes::WIN_RETURN ||