David Hansel
David Hansel
I found the following code in function wxToolbar::Realize() within src/msw/toolbar.cpp: ``` #if wxUSE_WXDIB if ( bitmap.HasAlpha() ) { // Strangely, toolbar expects bitmaps with transparency to not // be premultiplied,...
Thanks for the quick fix! I applied your changes to my local copy of wxWidgets 3.2.0 here and now all toolbar buttons look correct.
Unfortunately the write issue for higher track numbers on 8" drives is to be expected with the current implementation and is the main reason I have not added support for...
The hard part about implementing write pre-compensation is _very_ precise timing that it requires plus the amount of calculation necessary to know when to apply it. It's a significant change...
Not really. What is needed is the capability to queue up a new byte for transmission while the previous one is still transmitting so the new byte can be transmitted...
FatFS allocates **two** blocks of memory of size FF_MAX_SS for each open file - one that holds information about where on disk the file's sectors are located and one to...
As I mentioned in my previous message, the changes I suggested are only for reading and writing. Changing the format_track function is harder because it will involve a number of...
It's been a while since I looked at this code or thought about floppy disk formats so take this with a grain of salt. It should be much easier to...
> So I understand that it is better to do separate formatting routines for sectors 128, 256 and 512 bytes? What I was trying to say is that you can...
> `/home/pebe/Arduino/ArduFDD2SIO/ArduinoFDC.cpp:1090:63: error: matching constraint references invalid operand number` I think this error occurs because after adding "r27" in the inputs list you now have "r27" in both the inputs...