Actions
Emulator Issues #42
closedLinux FileUtil.cpp update can be compatible with 64bits?
% Done:
0%
Operating system:
N/A
Issue type:
Bug
Milestone:
Regression:
No
Relates to usability:
No
Relates to performance:
No
Easy:
No
Relates to maintainability:
No
Regression start:
Fixed in:
Description
you can see the changes here.
http://code.google.com/p/dolphin-emu/source/diff?r=38&format=side&path=/trunk/Source/Core/Common/Src/FileUtil.cpp
the variable _WIN32 is an enviroment variable? if yes.. how can it you
work on 64bits system?
#ifdef _WIN32
#include <shellapi.h>
#endif
Updated by hrydgard over 16 years ago
- Status changed from New to Invalid
Um, _WIN32 is a C preprocessor #define and exists on both 32-bit and 64-bit and
simply means Windows. Microsoft named it a bit short sightedly. The code works fine
on 64-bit.
Actions