#2816 closed defect (fixed)
MACOSX: Cannot Backspace in AGI Games
Reported by: | SF/mthreepwood | Owned by: | eriktorbjorn |
---|---|---|---|
Priority: | normal | Component: | Port: Mac OS X |
Version: | Keywords: | ||
Cc: | Game: |
Description
I am using 0.10.0svn from September 2 on my 10.2.8.
When using any AGI game, and you press "delete" it creates a white box instead of backspacing.
This doesn't happen on my PC.
Ticket imported from: #1551524. Ticket imported from: bugs/2816.
Change History (5)
comment:1 by , 18 years ago
comment:2 by , 18 years ago
Managed to dig up an AGI game and test this, the fix worked :). Nice one.
comment:3 by , 18 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:4 by , 18 years ago
Owner: | set to |
---|
comment:5 by , 6 years ago
Component: | → Port: Mac OS X |
---|
Note:
See TracTickets
for help on using tickets.
In a few engines, we have code like this:
// Make sure backspace works right (this fixes a small issue on OS X) if (event.kbd.keycode == 8) _keyPressed = 8; else _keyPressed = (byte)event.kbd.ascii;
I've added corresponding code to the AGI engine. Maybe that helps?