Search found 7 matches
- Mon Sep 25, 2006 5:13 am
- Forum: Development
- Topic: Visual Studio 2005 Support
- Replies: 10
- Views: 11330
- Mon Sep 25, 2006 4:43 am
- Forum: Development
- Topic: Visual Studio 2005 Support
- Replies: 10
- Views: 11330
Well, if you want to support x64 on Windows, currently Microsoft's compilers are the only way to go. The first reason I ever looked at the ZSNES code is when the compile failed on my 64-bit Linux system... ever since then I've always wanted to try porting it to 64-bit. The ZSNES development team may...
- Sat Sep 23, 2006 12:54 am
- Forum: ZSNES Talk
- Topic: ZSNES Savestate Expansion (10->100)
- Replies: 7
- Views: 2781
I think the easiest thing would just be to put the current slot block beside the 0-9 slot boxes, just the two digits, 00. Maybe in a different colour so they look different from the slots? if they were in boxes of the same size, only aligned with the right side of the frame with the same margin on t...
- Fri Sep 22, 2006 5:45 am
- Forum: Development
- Topic: Visual Studio 2005 Support
- Replies: 10
- Views: 11330
- Fri Sep 22, 2006 2:53 am
- Forum: Development
- Topic: Visual Studio 2005 Support
- Replies: 10
- Views: 11330
For anyone interested (by the number of posters that have replied, likely not many), I've gotten it compiling and running games; however not without modifications. 1) Used mingw's make utility (pagefault's suggestion). 2) Got the source for pdcurses (this is not mentioned in install.txt, but it shou...
- Fri Sep 22, 2006 1:01 am
- Forum: Development
- Topic: Visual Studio 2005 Support
- Replies: 10
- Views: 11330
Also, 2005 tells me 'stricmp' isn't ISO C++ compliant anymore, as is its substitution, '_stricmp'. Furthermore, I'm having some problems making the source. I have everything set up as per 'install.txt' (or so I am led to believe). The make begins with parsegen and dspemu1.c compiling successfully. A...
- Wed Sep 20, 2006 3:57 pm
- Forum: Development
- Topic: Visual Studio 2005 Support
- Replies: 10
- Views: 11330
Visual Studio 2005 Support
In Visual Studio 2005, functions such as sscanf and sprintf are declared as deprecated, and replaced with `secure' forms (e.g. sscanf_s, sprintf_s...). Is there any intent on adding support for this in the future? If not, you could easily add in _CRT_SECURE_NO_DEPRECATE as a define for the msvc plat...