Close

Updating PyGame

A project log for OSI Challenger 4P Reproduction

I am making a full sized Challenger 4P reproduction, a 6502 based personal computer from the late 1970s.

michael-gardiMichael Gardi 02/21/2023 at 16:240 Comments

I noticed that there was a problem with the emulator. The keyboard was not working correctly with shifted keys. It turned out to be an issue with the way that I implemented the keyboard handler and the version of PyGame that came pre-installed on the Raspberry Pi OS distribution. Fixed by updating PyGame with the following command.

pip install pygame --upgrade

Discussions