I think the SunSoft 5B build has the N163 multiplexer hiss disabled, but I can't find the version without the 5B. Also, cpow is working on a Qt version of FT based on 0.4.1, it's here
That's all I know, maybe there are more around there so you can search for them.
_______________________ This version of Dr. Mustache is outdated. Please download latest version here. [Dropbox (my FT stuff)]
I'm reporting a difference likely in the interpretation of C++ standard between MFC and Qt compilers, and the relatively minor change I made to solve the problem.
There are some cases of passing temporary CString objects to methods that expect non-const references to CString objects. The standard says this [binding a reference to a temporary] is not allowed, and compiling with MinGW gives an error for this. It's a relatively painless fix:
An example of what causes the compile error:
MainFrm.cpp:
m_pBannerEditName = new CBannerEdit(CString(_T("(title)")));
...because the CString is a temporary.
I had forgotten that I previously just removed the reference operator from the parameter because none of the methods in question actually modify the referenced thing, so I guess that's also a valid fix. =]
I discovered this while in process of migrating Qt FamiTracker to MFC FamiTracker 0.4.2 codebase.
The following line in SampleWindow.cpp in version 0.4.2 prevents the selected visualization's check-mark from showing up properly in the context menu because the wrong resource ID is passed to CheckMenuItem:
FWIW I've migrated to 0.4.2 now and things are working pretty nice, at least as good as they were in 0.4.1. Oh...I appreciate the OLE drag/drop curve-ball! ;]
It doesn't crash when I do it here (tried with an empty clipboard by running C:\Windows\System32\cmd.exe /c "echo off | clip"), neither with the FDS instrument editor nor the N163 instrument editor.
It crashed for me. I think I didn't use the clipboard today, so I opened the program, created a new Namco instrument, tried to paste wave and crashed.
It's weird, maybe FT shouldn't let you paste when you have weird stuff in the clipboard but the fact that it crashes is strange.
I copied the URL of this post or something (http://famitracker.com/forum/addPost.php?id=4434) [Don't go to that direction] and then pasted it on FT, it generated 0 1 2 3 in the wave text field but it didn't crash at all.
Attaching generated minidump, might have some use.
EDIT: jrlepage, I'm curious, what does that command do?
_______________________ This version of Dr. Mustache is outdated. Please download latest version here. [Dropbox (my FT stuff)]