http://bugs.winehq.org/show_bug.cgi?id=2683
Summary: Revelation won't work
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: c0dx(a)yahoo.com
i could not get this program to work, i followed all the steps...i placed dll's
in the program's folder so no more errors from dll's...but still won't work.
Download it from http://www.veraxin.net/revelation ... in the downloads
section..download the patch program and run it...it will download the game to
your pc. It's a mud...and i can't play itunder linux:(. tell me if you come up
with something...mail me ok? c0dx(a)yahoo.com
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2680
------- Additional Comments From willie(a)froq.net 2005-28-01 11:24 -------
I did just try to force xorg to use a 32bit framebuffer ("-fbbpp 32"), so it
should truely be the same as Windows' "32bit" setting. But Windows apps still
thing we're using 24bits...
I tried to find the corresponding code in Wine, to try a quick hack (report
framebuffer depth instead of color depth if color depth = 24), but I couldn't
find the function. Should be getDeviceCaps(BITSPIXELS)? Where's that one?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2681
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=12&versionId=6
| |5
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2678
mike(a)navi.cx changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From mike(a)navi.cx 2005-28-01 10:05 -------
Just hack winetest out of the build system for now.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2676
------- Additional Comments From mike(a)navi.cx 2005-28-01 09:41 -------
This is a FreeBSD specific problem, and requires in depth knowledge of the
FreeBSD threading system to fix. You will have to investigate this yourself, I
suspect.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2681
Summary: ms access 2000, forms with calculations not working
Product: Wine
Version: 20050111
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: r_vandam(a)hotpop.com
When opening a ms access (dutch version) form with a calculation in it:
The first field keeps blinking quickly until you click on it, then the
calculation is made. Sometimes it even causes ms access & wine to hang.
Reproduce:
20050111: In Northwind database open in Forms the Main switchboard. then choose
Categories --> ms access hangs.
20041201: In Northwind open form Orders. The first field (Vegie-spread) keeps
blinking until you click on it, then the calculation is made. This behaviour
crashes my own ms access application.
Console shows this messages:
fixme:nls:MultiByteToWideChar MB_USEGLYPHCHARS not supported
fixme:hook:NotifyWinEvent (32773,0x90050,27,0)-stub!
fixme:hook:NotifyWinEvent (32773,0x90050,27,0)-stub!
fixme:hook:NotifyWinEvent (32773,0x90050,27,0)-stub!
fixme:hook:NotifyWinEvent (32773,0x90050,27,0)-stub!
fixme:hook:NotifyWinEvent (32773,0x90050,27,0)-stub!
fixme:hook:NotifyWinEvent (32780,(nil),2,0)-stub!
Rob
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2679
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From tony_lambregts(a)telusplanet.net 2005-27-01 21:32 -------
Doh! We both pasted the wrong function too. LOL
Sorry about that I submitted a patch to fix this.
http://www.winehq.org/hypermail/wine-patches/2005/01/0743.html
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2679
helly(a)gmx.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|INVALID |
------- Additional Comments From helly(a)gmx.net 2005-27-01 20:00 -------
I just took a look at the current CVS (using cvsweb).
-----------------------------------
/***********************************************************************
* CharPrevA (USER32.@)
*/
LPSTR WINAPI CharPrevA( LPCSTR start, LPCSTR ptr )
{
while (*start && (start < ptr))
{
LPCSTR next = CharNextA( start );
if (next >= ptr) break;
start = next;
}
return (LPSTR)start;
}
/***********************************************************************
* CharPrevExA (USER32.@)
*/
LPSTR WINAPI CharPrevExA( WORD codepage, LPCSTR start, LPCSTR ptr, DWORD flags )
{
while (*start && (start < ptr))
{
LPCSTR next = CharNextExA( codepage, start, flags );
if (next > ptr) break;
start = next;
}
return (LPSTR)start;
}
-----------------------------------
The bug is not present in CharPrevA(), but in CharPrevExA().
Next time I will take a look at the wine-head first ;-).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.