diff options
author | David Holm <dholm@gentoo.org> | 2004-10-22 13:06:50 +0000 |
---|---|---|
committer | David Holm <dholm@gentoo.org> | 2004-10-22 13:06:50 +0000 |
commit | f44c605fcc9e760af19fc3e3717e96644a676c7a (patch) | |
tree | 60c60cd78d2ea1688041a2fc04c63436904d6069 /app-emulation/e-uae/files | |
parent | make sure we call the right unpack func when using cvs (diff) | |
download | historical-f44c605fcc9e760af19fc3e3717e96644a676c7a.tar.gz historical-f44c605fcc9e760af19fc3e3717e96644a676c7a.tar.bz2 historical-f44c605fcc9e760af19fc3e3717e96644a676c7a.zip |
Initial import
Diffstat (limited to 'app-emulation/e-uae/files')
-rw-r--r-- | app-emulation/e-uae/files/digest-e-uae-0.8.27_rc1 | 1 | ||||
-rw-r--r-- | app-emulation/e-uae/files/e-uae-0.8.27_rc1-keymap-fix.diff | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/app-emulation/e-uae/files/digest-e-uae-0.8.27_rc1 b/app-emulation/e-uae/files/digest-e-uae-0.8.27_rc1 new file mode 100644 index 000000000000..a730558d58ae --- /dev/null +++ b/app-emulation/e-uae/files/digest-e-uae-0.8.27_rc1 @@ -0,0 +1 @@ +MD5 aa051efc5fccbbc22b426daf1d287196 e-uae-0.8.27-RC1.tar.bz2 1088586 diff --git a/app-emulation/e-uae/files/e-uae-0.8.27_rc1-keymap-fix.diff b/app-emulation/e-uae/files/e-uae-0.8.27_rc1-keymap-fix.diff new file mode 100644 index 000000000000..af6220dc9ace --- /dev/null +++ b/app-emulation/e-uae/files/e-uae-0.8.27_rc1-keymap-fix.diff @@ -0,0 +1,19 @@ +--- /home/evilrich/e-uae-0.8.27-RC1/src/keymap/keymap.c 2004-10-06 04:01:47.000000000 -0500 ++++ src/keymap/keymap.c 2004-10-18 00:39:18.000000000 -0500 +@@ -168,13 +168,15 @@ + count = i; + + trans = (struct uae_input_device_kbr_default*) +- malloc (sizeof (struct uae_input_device_kbr_default) * count); ++ malloc (sizeof (struct uae_input_device_kbr_default) * (count + 1)); + + if (trans) { + for (i = 0; i < count; i++) { + trans[i].scancode = hostkeys[i].hostkey; + trans[i].event = default_keymap[hostkeys[i].uaekey]; + } ++ trans[i].scancode = -1; + } ++ + return trans; + }; |