Search found 7 matches

by Aefix
Mon Sep 25, 2006 5:13 am
Forum: Development
Topic: Visual Studio 2005 Support
Replies: 10
Views: 11330

I realize how much of an overhaul getting all of ZSNES to run in 64-bit would be, but I'm the type of person that just wishes everything would just get 64-bit already.
by Aefix
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...
by Aefix
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...
by Aefix
Fri Sep 22, 2006 5:45 am
Forum: Development
Topic: Visual Studio 2005 Support
Replies: 10
Views: 11330

So I've figured out the reason for that crash: it's due to a call to access() in zpath.c. Passing it X_OK in the mode mask causes the program to crash; this must not be supported in 8.0. Changing the code as per this diff 210c210 < if (*LoadDir && !access(LoadDir, F_OK|X_OK|R_OK)) --- > if (...
by Aefix
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...
by Aefix
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...
by Aefix
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...