| |
Rubi Account closed
Registered: Apr 2002 Posts: 48 |
VICE beta testers - anyone?
Hi.
Everybody who wants to test current developer release (with several bugs fixed that were reported in the C64 Emulator bugs thread) should send me a private message here in CSDB or a mail to a.matthiesNOSPAM@online.de
Beta testers should be practiced in using VICE and its options and know about Gropaez buglist and its "rules of thumb" to avoid reporting already known or "wrong settings" bugs. The main goal should be regression testing.
I will send a (link to a) Windows binary and source archive with some information about fixed and known bugs.
- Andreas
|
|
... 47 posts hidden. Click here to view all posts.... |
| |
enthusi
Registered: May 2004 Posts: 677 |
@Ruby: sorry. Im using the linux version and I'd prefer shortcuts in that alt+X manner. And yeah, I can/did do that myself but as for the main tree I mean. thx :) |
| |
iAN CooG
Registered: May 2002 Posts: 3187 |
Quote: @Ruby: sorry. Im using the linux version and I'd prefer shortcuts in that alt+X manner. And yeah, I can/did do that myself but as for the main tree I mean. thx :)
in arch\win32\ui.c I've already added
ALT+F5=REW
ALT+F6=FFWD
ALT+F7=STOP
ALT+F8=PLAY
ALT+F9=REC
but I can't do anything for other platforms. DIY ;)
edit: added also 2 keys for TDE/VTD toggle on ALT-2 & ALT-3
here's my patch for win32
hxxp://iancoog.altervista.org/vice/iANCooG-1.22.8-newhotkeys_win32.tar.gz
|
| |
Burglar
Registered: Dec 2004 Posts: 1089 |
first and foremost there should be a hotkey to swap 6581/8580. |
| |
iAN CooG
Registered: May 2002 Posts: 3187 |
Quote: first and foremost there should be a hotkey to swap 6581/8580.
Easy, added on alt-f1/f2, updated diff file.
:) |
| |
chatGPZ
Registered: Dec 2001 Posts: 11360 |
just so you guys know (and so you dont have to waste time on eventually doing it) ... i have AR4 emulation working (post AR3, pre AR4.2 hardware), and i am currently playing with implementing StarDOS. will post a patch later (i want to implement stardos first, and eventually clean up the code too =P), i guess its not that terribly useful anyway, besides historic interest ofcourse :) |
| |
Oswald
Registered: Apr 2002 Posts: 5086 |
Quote: There is some toolbar for Win32 in my pipeline with buttons for the datasette controls. What other buttons would you like to have?
attach disk image - drv 8
detach disk image - drv 8
autostart disk image
autostart prg
turn true drive emulation on (not needed if fixed:)
joystick setup
I use these functions the most.the best would be a customizable bar tho. each menu item = one button as in office used to be. |
| |
Burglar
Registered: Dec 2004 Posts: 1089 |
Quote: Easy, added on alt-f1/f2, updated diff file.
:)
ian, sadly, I have no use for your windows key crap ;) |
| |
iAN CooG
Registered: May 2002 Posts: 3187 |
Found a bug in src/arch/win32/uilib.c, when compiling with MSVC7.1 filters list is always garbled.
Use memmove() instead of memcpy() when copying inside the same/overlapping memory areas.
--- vice-1.22.8/src/arch/win32/uilib.c 2007-08-19 18:07:36 +0200
+++ vice-1.22.8_ian/src/arch/win32/uilib.c 2008-02-06 14:09:01 +0100
@@ -582,7 +582,7 @@
pattern_len = (_tcslen(uilib_filefilter[i].pattern) + 1) * sizeof(TCHAR);
filter = lib_realloc(filter, current_len + name_len + pattern_len);
- memcpy(filter + name_len + pattern_len, filter, current_len);
- memcpy(filter, translate_text(uilib_filefilter[i].name), name_len);
- memcpy(filter + name_len, uilib_filefilter[i].pattern, pattern_len);
+ memmove(filter + name_len + pattern_len, filter, current_len);
+ memmove(filter, translate_text(uilib_filefilter[i].name), name_len);
+ memmove(filter + name_len, uilib_filefilter[i].pattern, pattern_len);
current_len += name_len + pattern_len;
}
@burglar: I can do mods only for win32 as I have no way to test on linux. DIY or prey for someone to make it for you :P |
| |
Rubi Account closed
Registered: Apr 2002 Posts: 48 |
Quote: in arch\win32\ui.c I've already added
ALT+F5=REW
ALT+F6=FFWD
ALT+F7=STOP
ALT+F8=PLAY
ALT+F9=REC
but I can't do anything for other platforms. DIY ;)
edit: added also 2 keys for TDE/VTD toggle on ALT-2 & ALT-3
here's my patch for win32
hxxp://iancoog.altervista.org/vice/iANCooG-1.22.8-newhotkeys_win32.tar.gz
I'm working on a patch for universal shortcut modification in Win32, means the user can set the desired shortcuts via config file.
|
| |
vedos Account closed
Registered: Jul 2003 Posts: 33 |
Quote: just a suggestion ( even though it has been purposed many many times... )
an option to have true drive emulation ON by default AT ALL TIMES. because it's starting to slightly piss me off, and I'm not the only one ;_)
------------------------------------
http://zomgwtfbbq.info
Second that. It's really annoying that it turns off sometimes when running a program. |
Previous - 1 | 2 | 3 | 4 | 5 | 6 - Next |