http://bugs.winehq.com/show_bug.cgi?id=740
*** shadow/740 Fri May 31 13:26:39 2002
--- shadow/740.tmp.7952 Fri May 31 13:26:50 2002
***************
*** 251,253 ****
--- 251,300 ----
------- Additional Comments From Speeddymon(a)yahoo.com 2002-05-31 13:26 -------
Adding Andriy to CC's
+
+ ------- Additional Comments From Speeddymon(a)yahoo.com 2002-05-31 13:26 -------
+ ok, I have some info on the problem...
+
+ here is basically what happens:
+
+ fgBits gets initialized ;)
+ fgBits gets set to zero
+ then things screw up...
+
+ but you knew that I know, just keep reading...
+
+ 2 lines below where fgBits gets set to zero, xmax gets set to whatever,
+ possibly zero, same with ymax...
+
+ then we run a for on y=0 and compare it to ymax
+ inside there we run a for on x=0 and compare it to xmax...
+ then theres a switch that may be important to this bug
+ and then the crucial if (red+green+blue > threshold)
+ which is the only place that fgBits gets incremented before that divide by zero
+ error, so obviously 1 of 3 things is happening:
+
+ 1) ymax is being set to zero and so the for fails
+ 2) xmax is being set to zero and so the for fails
+ 3) red+green+blue is not being set high enough to pass the threshold if
+
+ and so fgBits++ isn't taking place...
+
+ now that I have looked back up at the switch, I see that lo and behold:
+
+ theChar = theImage[byteIndex++];
+ red = theChar;
+
+ and like david said above, the whole theImage array is failing...
+
+ now, since I don't have access to a Linux box ATM (i have to go home to access
+ it) I can't add my own trace messages to see what is causing theImage to fail,
+ but it looks like either
+
+ 1) byteIndex++ isn't working for some really weird reason
+ 2) byteIndex++ is working, but theImage[1] doesn't exist
+ 3) &theMask[ptr->nWidth/8 * ptr->nHeight]; isn't working...
+
+ So... I will add my stuff tonight and try to post the results tomorrow....
+
+ all of this information is against the current mouse.c, not rev 1.2 which is
+ the first version with this problem...
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=740
*** shadow/740 Fri May 31 12:28:24 2002
--- shadow/740.tmp.7880 Fri May 31 13:26:15 2002
***************
*** 9,14 ****
--- 9,15 ----
+----------------------------------------------------------------------------+
| Assigned To: wine-bugs(a)winehq.com |
| Reported By: ronis(a)onsager.chem.mcgill.ca |
+ | CC list: Cc: Speeddymon@yahoo.com,tony_lambregts@telusplanet.net |
+----------------------------------------------------------------------------+
| Milestone: TargetMilestone: --- |
| URL: |
***************
*** 244,246 ****
--- 245,250 ----
------- Additional Comments From Speeddymon(a)yahoo.com 2002-05-31 12:28 -------
Adding myself to CC, I have an idea on how to fix it, but I need to check it
out first...
+
+ ------- Additional Comments From Speeddymon(a)yahoo.com 2002-05-31 13:26 -------
+ Adding Tony to CC's...
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=369
*** shadow/369 Mon Nov 19 12:12:54 2001
--- shadow/369.tmp.6457 Fri May 31 13:05:19 2002
***************
*** 7,16 ****
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-misc |
+----------------------------------------------------------------------------+
! | Assigned To: bugs(a)codeweavers.com |
| Reported By: minter(a)lunenburg.org |
| CC list: Cc: |
+----------------------------------------------------------------------------+
| URL: |
+============================================================================+
| DESCRIPTION |
--- 7,17 ----
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-misc |
+----------------------------------------------------------------------------+
! | Assigned To: wine-bugs(a)winehq.com |
| Reported By: minter(a)lunenburg.org |
| CC list: Cc: |
+----------------------------------------------------------------------------+
+ | Milestone: TargetMilestone: --- |
| URL: |
+============================================================================+
| DESCRIPTION |
***************
*** 32,34 ****
--- 33,40 ----
(0x403e686c)->(0x403d70b4,0x00000000),stub!
I'll be glad to help with more debugging if needed.
+
+ ------- Additional Comments From apa3a(a)yahoo.com 2002-05-31 13:05 -------
+ Wade, can you reproduce the issue with recent Wine build?
+ The game requires registration, so we need your help in debugging.
+ For debugging it's better if you install source distribution of Wine.
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=750
*** shadow/750 Fri May 31 12:19:17 2002
--- shadow/750.tmp.6123 Fri May 31 13:00:44 2002
***************
*** 43,45 ****
--- 43,51 ----
(mid-air collision occured)
It's with the patch applied (I did the patch).
+
+ ------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-05-31 13:00 -------
+ UGH ;)
+ (/me mutters something about having to care about too many Wine tasks at the
+ same time)
+ Oh well, good luck in fixing this !
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=747
*** shadow/747 Fri May 31 10:18:47 2002
--- shadow/747.tmp.5927 Fri May 31 12:59:12 2002
***************
*** 160,162 ****
--- 160,169 ----
This software is not free available.
+
+ ------- Additional Comments From sbuehne(a)web.de 2002-05-31 12:59 -------
+ Uups,
+ there is a trial version. I will check whether it shows the same behaviour as
+ the full version.
+
+ Stephan
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=740
*** shadow/740 Fri May 31 10:51:49 2002
--- shadow/740.tmp.3193 Fri May 31 12:28:24 2002
***************
*** 9,15 ****
+----------------------------------------------------------------------------+
| Assigned To: wine-bugs(a)winehq.com |
| Reported By: ronis(a)onsager.chem.mcgill.ca |
- | CC list: Cc: |
+----------------------------------------------------------------------------+
| Milestone: TargetMilestone: --- |
| URL: |
--- 9,14 ----
***************
*** 240,242 ****
--- 239,246 ----
+
+
+ ------- Additional Comments From Speeddymon(a)yahoo.com 2002-05-31 12:28 -------
+ Adding myself to CC, I have an idea on how to fix it, but I need to check it
+ out first...
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=750
*** shadow/750 Fri May 31 12:17:13 2002
--- shadow/750.tmp.2379 Fri May 31 12:19:17 2002
***************
*** 38,40 ****
--- 38,45 ----
fixed - it's possible that it has some problems with encryption/decryption of
the saved values.
See bug 725.
+
+ ------- Additional Comments From vberon(a)mecano.gme.usherb.ca 2002-05-31 12:19 -------
+ (mid-air collision occured)
+
+ It's with the patch applied (I did the patch).
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=750
*** shadow/750 Fri May 31 11:43:51 2002
--- shadow/750.tmp.2154 Fri May 31 12:17:13 2002
***************
*** 2,8 ****
| Radmin doesn't want to start the second time (says it has expired) |
+----------------------------------------------------------------------------+
| Bug #: 750 Product: Wine |
! | Status: UNCONFIRMED Version: 20020509 |
| Resolution: Platform: |
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-misc |
--- 2,8 ----
| Radmin doesn't want to start the second time (says it has expired) |
+----------------------------------------------------------------------------+
| Bug #: 750 Product: Wine |
! | Status: NEW Version: 20020509 |
| Resolution: Platform: |
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-misc |
***************
*** 30,32 ****
--- 30,40 ----
applied ?
If without, then please apply and try again.
Thanks !
+
+ ------- Additional Comments From apa3a(a)yahoo.com 2002-05-31 12:17 -------
+ Andreas, this is Vincent who created the time patches ;-)
+
+ Per my advise he submitted a separate bug for this application because it is not
+ fixed - it's possible that it has some problems with encryption/decryption of
+ the saved values.
+ See bug 725.
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=721
*** shadow/721 Tue May 28 19:35:38 2002
--- shadow/721.tmp.1981 Fri May 31 12:15:23 2002
***************
*** 139,141 ****
--- 139,150 ----
That is actually the point, if the windows version of the fonts in the aliases
are not available, then it will use the aliases, and if they are then the
windows version will be used...
+
+ ------- Additional Comments From Speeddymon(a)yahoo.com 2002-05-31 12:15 -------
+ Well, the patch was rejected, as are most of my patches :/ and I was told to
+ check the code in x11drv/font.c I will check it tonight and do a status update
+ within the next couple of weeks, I have less time to spend working on wine now
+ that I work 4-11pm every signle night, so... you know where I am going with
+ this, no need to say it...
+
+ Anyways, check back in a couple weeks
\ No newline at end of file