Custom Query (81 matches)
Results (37 - 39 of 81)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#33 | fixed | Make wrc work in GAS mode | ||
Description |
Currently, wrc (wine resource compiper) is hard-hacked to produce the MASM code for resource data from the .rc file. This makes it impossible to compile the resulting assembly with GCC. The hack is done by introducing a MASM define and a couple of ifdef. I'm going to make it proper by adding a corrsesponding command line switch that turns on MASM mode instead of the default GAS mode. |
|||
#34 | fixed | Weird scroll bar behavior | ||
Description |
The current Odin builds show the weird behavior of the scroll bar controls: sometimes the handles don't move, sometimes the arrow buttons remain depressed after clicking them with the mouse. This behavior can be seen in e.g. the standard About Odin dialog (accessible through the system menu of the main window) or in the standard File Open dialog (e.g. in the notepad application). |
|||
#37 | fixed | Recursion in exception handler | ||
Description |
There is an annoying recursion in the Odin exception handler where it calls DosExit() while processing the XCPT_PROCESS_TERMINATE and XCPT_ASYNC_PROCESS_TERMINATE (which are themselves the result of DosExit()). This recursion in particular leads to a big POPUPLOG.OS2 file (filled up with 0xC0010001 and 0xC0010002 exception records) at Java process termination (either normal or abnormal). This needs to be solved as it indicates an error in the exception processing logic. |