https://bugs.winehq.org/show_bug.cgi?id=39706
Bug ID: 39706
Summary: Gazillionaire refuses to start
Product: Wine
Version: 1.8-rc2
Hardware: x86
URL: http://web.archive.org/web/20051230143410/http://www.lavamind.com/download.html
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: user16
Assignee: wine-bugs(a)winehq.org
Reporter: julliard(a)winehq.org
CC: sagawa.aki+winebugs(a)gmail.com
Blocks: 34308
Regression SHA1: 9ac7bca209e1b11af898d1b393d13c8dc92c66e1
Distribution: ---
Trying to reproduce bug 34308, I found out that Gazillionaire fails to start in
current Wine. It shows an error saying "Failed to open graphics server. GSW.EXE
must be available via the DOS path".
This is a regression caused by:
commit 9ac7bca209e1b11af898d1b393d13c8dc92c66e1
Author: Akihiro Sagawa <sagawa.aki(a)gmail.com>
Date: Mon Aug 3 23:48:47 2015 +0900
user.exe: Release the Win16 lock due to loading 32-bit dlls in
CreateWindow.
The app calls WinExec("GSW.EXE"), but because the Win16 lock is released upon
CreateWindow, it doesn't wait for GSW.EXE to have initialized its window
correctly. Before the change, the lock would be held until the first GetMessage
call.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27165
Summary: ffdshow A/V config tool: drop-down list doesn't appear
Product: Wine
Version: 1.3.20
Platform: x86
URL: http://sourceforge.net/projects/ffdshow-tryout/
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
In ffdshow's audio/video configuration window you can choose which decoder you
want to use for different A/V formats.
A drop-down menu should appear automatically when you select a decoder for the
desired format.
The menu doesn't appear in current Wine.
Actually, there is a way to make the menu appear: press and hold left mouse
button on the selected field (under Decoder tab). While LMB is still pressed,
move the mouse up or down by a couple of pixels.
Workaround: native comctl32.
This 'feature' worked correctly in Wine-1.1.2:
098dc7b3302f39c5500d644615a6f4c37d328ce0 is the first bad commit
commit 098dc7b3302f39c5500d644615a6f4c37d328ce0
Author: Lei Zhang <thestig(a)google.com>
Date: Mon Aug 18 16:05:27 2008 -0700
comctl32: Set listview focus on WM_LBUTTONUP instead of WM_LBUTTONDOWN.
:040000 040000 ab9cd9294cee7fd398296c68872b1661d28953c2
e40db8f62a0588aac662bc68d5f6b1aafe86e42e M dlls
To reproduce the issue in the application:
1) Install the app as usual: at the end of installation choose the option to
run the config tool automatically.
2) Under the Decoder tab select a field (containing either disabled or
libavcodec) >> the drop-down list doesn't appear.
The config tool can also be launched by:
wine rundll32.exe ffdshow.ax configure
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39673
Bug ID: 39673
Summary: Logical error in comparison (misprint)
Product: Wine
Version: 1.8-rc1
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: tapi32
Assignee: wine-bugs(a)winehq.org
Reporter: isakov-sl(a)bk.ru
Clang show me warning but this is logical mistake
----------
wine-hq/dlls/tapi32/assisted.c:63:8: warning: logical not is only applied to
the left hand side of this comparison [-Wlogical-not-parentheses]
if(!RegOpenKeyW(HKEY_LOCAL_MACHINE, locations_keyW, &hkey) !=
ERROR_SUCCESS) {
^ ~~
-----
It must be
if(!RegOpenKeyW(HKEY_LOCAL_MACHINE, locations_keyW, &hkey)) {
or
if(RegOpenKeyW(HKEY_LOCAL_MACHINE, locations_keyW, &hkey) != ERROR_SUCCESS) {
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=35330
Bug ID: 35330
Summary: Typo: "in a separate windows" on the Man Page (at
http://www.winehq.org/docs/wine )
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: documentation
Assignee: wine-bugs(a)winehq.org
Reporter: shlomif(a)shlomifish.org
Classification: Unclassified
Hi all,
there's a typo in the man page (at http://www.winehq.org/docs/wine and "man
wine" from wine-1.6.1):
[QUOTE]
For running CUI executables (Windows console programs), use wineconsole
instead of wine. This will display all the output in a separate
windows (this requires X11 to run). Not using wineconsole for CUI
programs
will only provide very limited console support, and your program might
not function properly.
[QUOTE]
"in a separate windows" should be "in a separate window".
Regards,
-- Shlomi Fish
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9491
Summary: CListCtrl:GetSubItemRect doesn't work for the label row
Product: Wine
Version: 0.9.44.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bgp(a)cs.elte.hu
When I call CListCtrl::GetSubItemRect with m_item = -1, it supposed to handle
the label row. It works in windows. Under wine, it doesn't work, ref will
contain garbage.
res = CListCtrl::GetSubItemRect(m_item,m_subitem,LVIR_BOUNDS,ref);
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38559
Bug ID: 38559
Summary: GTA4: crash after benchmark has completed
Product: Wine
Version: 1.7.40
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wmi&wbemprox
Assignee: wine-bugs(a)winehq.org
Reporter: patrick1804(a)web.de
Regression SHA1: 1f004b34ade39c107796470b83c6d3e116106384
Distribution: ---
Created attachment 51435
--> https://bugs.winehq.org/attachment.cgi?id=51435
wine trace of GTA4 including stacktrace WINEDEBUG=wbemprox
GTA4 queries Win32_Processor and crashes with this commit. It doesn't crash
without this commit.
I've reverted the commit on wine 1.7.41 and the crash is gone.
Tested with vanilla wine and wine-staging.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=36345
Bug ID: 36345
Summary: TGB Dual 8.3: A Windows Videogame emulator that
crashes when loading a ROM.
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: swordofsilence(a)gmail.com
Created attachment 48413
--> http://bugs.winehq.org/attachment.cgi?id=48413
The backlog provided after TGB Dual 8.3 crashed.
When loading a videogame ROM with TGB Dual V8.3 open, such as Pokemon Crystal,
it crashes. If I attempt to load the Pokemon Crystal ROM directly, it will fail
to load with the message "There is no Windows program configured to open this
type of file."
Pokemon Crystal File was this type: Pokemon - Crystal Version (USA,
Europe).gbc.
The log that appears when I try to load it while TGB Dual V8.3 is open is
provided as an attachment.
Link for TGB Dual V8.3 Download:
http://www.emuparadise.me/Nintendo_Gameboy_Advance_Emulators/Windows/TGB_Du…
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38851
Bug ID: 38851
Summary: Wine64 build produces extra warning in secur32
comparing to Wine32 build
Product: Wine
Version: 1.7.46
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: secur32
Assignee: wine-bugs(a)winehq.org
Reporter: wylda(a)volny.cz
Distribution: ---
Created attachment 51778
--> https://bugs.winehq.org/attachment.cgi?id=51778
64bit build log
Similarly to bug 35602 + bug 35603 + bug 35604, but this time for secur32.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39691
Bug ID: 39691
Summary: Derive 6 crashes when clicking on the edit menu item
and was working fine with wine 1.6
Product: Wine
Version: 1.7.43
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
Assignee: wine-bugs(a)winehq.org
Reporter: vfrederix(a)gmail.com
Distribution: ---
Created attachment 52930
--> https://bugs.winehq.org/attachment.cgi?id=52930
Logs
Something seems to be added to ole since wine version 1.6 and makes Derive 6
freeze when clicking on the "edit" menu item.
See compared logs (wine 1.6 vs wine 1.7.43) for more details.
________________________________________________________
|-| Derive 6 |_|O|x|
--------------------------------------------------------
| File | EDIT <-- | Insert | Author | (...) |
--------------------------------------------------------
| |
| #1 x = 1 |
| #2 y = 2 |
| |
| |
--------------------------------------------------------
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39580
Bug ID: 39580
Summary: error using va_start() macro
Product: Wine
Version: 1.7.54
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: build-env
Assignee: wine-bugs(a)winehq.org
Reporter: isakov-sl(a)bk.ru
Clang-3.8 can't continue
~~~
/Users/sergey/ProjectsML/wine-sherry/dlls/avifil32/api.c:2303:5: error:
'va_start' used in Win64 ABI function
va_start(vl, lpOptions);
^
/Users/sergey/src/llvm-build/Release/bin/../lib/clang/3.8.0/include/stdarg.h:33:29:
note: expanded from macro
'va_start'
#define va_start(ap, param) __builtin_va_start(ap, param)
^
/Users/sergey/ProjectsML/wine-sherry/dlls/avifil32/api.c:2346:5: error:
'va_start' used in Win64 ABI function
va_start(vl, lpOptions);
^
/Users/sergey/src/llvm-build/Release/bin/../lib/clang/3.8.0/include/stdarg.h:33:29:
note: expanded from macro
'va_start'
#define va_start(ap, param) __builtin_va_start(ap, param)
^
2 errors generated.
make[1]: *** [api.o] Error 1
make[1]: *** Waiting for unfinished jobs....
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.