I was referring to the VBA-M link, actually. >.>Squall_Leonhart wrote:no, phpbb is broken,I.S.T. wrote:Your sig is somewhat broken, Squall.its the only bbsoftware that ignores the center tags.
VBA-M
Moderator: General Mods
-
- Trooper
- Posts: 369
- Joined: Tue Jun 10, 2008 6:19 am
- Location: Australia
- Contact:
Yes... it is do-able.franpa wrote:can it be made so you can unmute the audio via selecting the "mute" option a 2nd time instead of the "enable" option that is not in the sub menu?Deathlike2 wrote:Mute and Audio off effectively get the same result (no sound).. but accomplish different tasks.
[img]http://img.photobucket.com/albums/v253/squall_leonhart69r/Final_Fantasy_8/squall_sig1.gif[/img]
[url=http://vba-m.com/]VBA-M Forum[/url], [url=http://www.ngohq.com]NGOHQ[/url]
[url=http://vba-m.com/]VBA-M Forum[/url], [url=http://www.ngohq.com]NGOHQ[/url]
phpbb
yeah it's the same in phpbb3 but it can be fixed though, I added the center tags in the bbcode editor on my forumsSquall_Leonhart wrote: no, phpbb is broken,its the only bbsoftware that ignores the center tags.
-
- Trooper
- Posts: 369
- Joined: Tue Jun 10, 2008 6:19 am
- Location: Australia
- Contact:
Crono's patch fixed the Kirby's tilt and tumble issue, how ever,. now it pops up an error that the file size is wrong, though i believe 256b is the correct size, i have a feeling this fix will also effect any other games that use MBC7, iirc i think we only had up to 5 working before
Crono's second patch has fixed it.
Crono's second patch has fixed it.
[img]http://img.photobucket.com/albums/v253/squall_leonhart69r/Final_Fantasy_8/squall_sig1.gif[/img]
[url=http://vba-m.com/]VBA-M Forum[/url], [url=http://www.ngohq.com]NGOHQ[/url]
[url=http://vba-m.com/]VBA-M Forum[/url], [url=http://www.ngohq.com]NGOHQ[/url]
-
- Trooper
- Posts: 369
- Joined: Tue Jun 10, 2008 6:19 am
- Location: Australia
- Contact:
thats normal, the mute button used to be on the same men as the other 2.. how ever someone moved it.. for some reason.franpa wrote:Now, when muting, neither On or Off is selected, and the only way to unmute is still to turn the audio On even though it should be On already (but silenced).
[img]http://img.photobucket.com/albums/v253/squall_leonhart69r/Final_Fantasy_8/squall_sig1.gif[/img]
[url=http://vba-m.com/]VBA-M Forum[/url], [url=http://www.ngohq.com]NGOHQ[/url]
[url=http://vba-m.com/]VBA-M Forum[/url], [url=http://www.ngohq.com]NGOHQ[/url]
-
- -Burninated-
- Posts: 871
- Joined: Mon Sep 10, 2007 11:33 pm
- Location: Unspecified
-
- ZSNES Developer
- Posts: 6747
- Joined: Tue Dec 28, 2004 6:47 am
i checked out the vbacompiles/msvc2008/ folder. the latest is 589.
Last edited by franpa on Tue Aug 12, 2008 7:14 am, edited 1 time in total.
Core i7 920 @ 2.66GHZ | ASUS P6T Motherboard | 8GB DDR3 1600 RAM | Gigabyte Geforce 760 4GB | Windows 10 Pro x64
-
- ZSNES Developer
- Posts: 6747
- Joined: Tue Dec 28, 2004 6:47 am
-
- ZSNES Developer
- Posts: 6747
- Joined: Tue Dec 28, 2004 6:47 am
It would be nice if those libs were built in (or included with the app) or whatever you use those builds for are built internally. Adding extra layers to a program only serves to bring undue hassle (meaning you'll get more dumbass complaints).
Other than DX, driver updates, or maybe getting Creative's OpenAL driver.. the extra steps required to get either build working seems to border on "too much effort"...
This isn't a slight on your efforts.. partly it's the laziness factor, but also the "I shouldn't have to jump through millions of hoops to get this working" feeling that I have.
Additionally, the I don't fit the redist requirements (I run Win2k).
Other than DX, driver updates, or maybe getting Creative's OpenAL driver.. the extra steps required to get either build working seems to border on "too much effort"...
This isn't a slight on your efforts.. partly it's the laziness factor, but also the "I shouldn't have to jump through millions of hoops to get this working" feeling that I have.
Additionally, the I don't fit the redist requirements (I run Win2k).
Continuing [url=http://slickproductions.org/forum/index.php?board=13.0]FF4[/url] Research...
So, you rather the MFC/Qt4 runtimes static?It would be nice if those libs were built in (or included with the app) or whatever you use those builds for are built internally.
I know Spacy did a fair bit of tinkering with the build system since my last commit (which was around 595), so you might wanna make a account on our forum and bring it up with him.
I know personally I want the ZLib/libpng builds static, but Spacy wants them dynamic...
But I do agree with your concerns. I really wish Spacy stuck with mingw for Windows Qt building: Using mingw with Qt4 is extremely painless. Now I have to jump through similar hoops.
Though, if you want working release grade compiles of the MFC build, you might need our lamer protector...
Hmm, would it be possible to post both statically linked EXEs and dynamically linked ones?
It may be possible to pull off some helper functions to dynamically bind the DLLs with only a few function calls, such as OpenAL and co. Maybe we can write up a quick script to spit out code that tries to load and bind all the functions in advance, so you don't even have to use any of that function pFnction = (FOO, FOO)GetProcAddress() voodoo in your actual code?
Also, is it possible to specify the version of MFC as the one that shipped with Win2k, or are there new features / too many library changes to use the older one?
It may be possible to pull off some helper functions to dynamically bind the DLLs with only a few function calls, such as OpenAL and co. Maybe we can write up a quick script to spit out code that tries to load and bind all the functions in advance, so you don't even have to use any of that function pFnction = (FOO, FOO)GetProcAddress() voodoo in your actual code?
Also, is it possible to specify the version of MFC as the one that shipped with Win2k, or are there new features / too many library changes to use the older one?
I'd have to wonder why go to the extra trouble.Hmm, would it be possible to post both statically linked EXEs and dynamically linked ones?
Sounds quite neat!It may be possible to pull off some helper functions to dynamically bind the DLLs with only a few function calls, such as OpenAL and co. Maybe we can write up a quick script to spit out code that tries to load and bind all the functions in advance, so you don't even have to use any of that function pFnction = (FOO, FOO)GetProcAddress() voodoo in your actual code?
Main thing that is restricting is compiler usage (IIRC, very recent VS updates make Win9x a non compilable targetAlso, is it possible to specify the version of MFC as the one that shipped with Win2k, or are there new features / too many library changes to use the older one?

That said, I'm not sure. I honestly haven't dealt much personally with MFC, or .NET since I try to stick with the plain Win32 API only in my personal coding projects. VBA-M has only been the first real exposure with MFC coding.
-
- Trooper
- Posts: 369
- Joined: Tue Jun 10, 2008 6:19 am
- Location: Australia
- Contact:
The redists work perfectly fine on Win2k, they even work on windows 98. (with some adjusting)Deathlike2 wrote:It would be nice if those libs were built in (or included with the app) or whatever you use those builds for are built internally. Adding extra layers to a program only serves to bring undue hassle (meaning you'll get more dumbass complaints).
Other than DX, driver updates, or maybe getting Creative's OpenAL driver.. the extra steps required to get either build working seems to border on "too much effort"...
This isn't a slight on your efforts.. partly it's the laziness factor, but also the "I shouldn't have to jump through millions of hoops to get this working" feeling that I have.
Additionally, the I don't fit the redist requirements (I run Win2k).
Supported Operating Systems: Windows 2000; Windows 2000 Advanced Server; Windows 2000 Professional Edition ; Windows 2000 Server; Windows 2000 Service Pack 2; Windows 2000 Service Pack 3; Windows 2000 Service Pack 4; Windows 98; Windows 98 Second Edition; Windows Home Server; Windows ME; Windows Server 2003; Windows Server 2003 R2 (32-Bit x86); Windows Server 2003 R2 Datacenter Edition (32-Bit x86); Windows Server 2003 R2 Datacenter x64 Edition; Windows Server 2003 R2 Enterprise Edition (32-Bit x86); Windows Server 2003 R2 Enterprise x64 Edition; Windows Server 2003 R2 Standard Edition (32-bit x86); Windows Server 2003 R2 Standard x64 Edition ; Windows Server 2003 R2 x64 editions; Windows Server 2003 Service Pack 1; Windows Server 2003 Service Pack 2; Windows Server 2003 Service Pack 2 x64 Edition; Windows Server 2003 x64 editions; Windows Server 2003, Datacenter Edition (32-bit x86); Windows Server 2003, Enterprise Edition (32-bit x86); Windows Server 2003, Standard Edition (32-bit x86); Windows Server 2003, Web Edition; Windows Server 2008; Windows Server 2008 Datacenter; Windows Server 2008 Datacenter without Hyper-V; Windows Server 2008 Enterprise; Windows Server 2008 Enterprise without Hyper-V; Windows Server 2008 Standard; Windows Server 2008 Standard without Hyper-V; Windows Small Business Server 2003 ; Windows Vista; Windows Vista 64-bit Editions Service Pack 1; Windows Vista Business; Windows Vista Business 64-bit edition; Windows Vista Business N; Windows Vista Enterprise; Windows Vista Enterprise 64-bit edition; Windows Vista Home Basic; Windows Vista Home Basic 64-bit edition; Windows Vista Home Basic N; Windows Vista Home Premium; Windows Vista Home Premium 64-bit edition; Windows Vista Service Pack 1; Windows Vista Starter; Windows Vista Starter N; Windows Vista Ultimate; Windows Vista Ultimate 64-bit edition; Windows Web Server 2008; Windows XP; Windows XP 64-bit; Windows XP Home Edition ; Windows XP Home Edition N; Windows XP Media Center Edition; Windows XP Professional Edition ; Windows XP Professional N; Windows XP Professional x64 Edition ; Windows XP Service Pack 1; Windows XP Service Pack 2; Windows XP Service Pack 3; Windows XP Starter Edition; Windows XP Tablet PC Edition
[img]http://img.photobucket.com/albums/v253/squall_leonhart69r/Final_Fantasy_8/squall_sig1.gif[/img]
[url=http://vba-m.com/]VBA-M Forum[/url], [url=http://www.ngohq.com]NGOHQ[/url]
[url=http://vba-m.com/]VBA-M Forum[/url], [url=http://www.ngohq.com]NGOHQ[/url]
-
- ZSNES Developer
- Posts: 6747
- Joined: Tue Dec 28, 2004 6:47 am