diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2007-07-15 08:53:13 +0000 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2007-07-15 08:53:13 +0000 |
commit | efc984831eef5eda3e53f476abff4c665d682ca7 (patch) | |
tree | da3d049220ee8f5d67be0039e5aaf6ca7a2ce5b3 /emulators | |
parent | 797d61b83a93be19ca77c8f29cf6fd344bc502cb (diff) | |
download | ports-efc984831eef5eda3e53f476abff4c665d682ca7.tar.gz ports-efc984831eef5eda3e53f476abff4c665d682ca7.zip |
Notes
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/pearpc/files/patch-src-tools-crc32.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/emulators/pearpc/files/patch-src-tools-crc32.cc b/emulators/pearpc/files/patch-src-tools-crc32.cc new file mode 100644 index 000000000000..caf6f668b908 --- /dev/null +++ b/emulators/pearpc/files/patch-src-tools-crc32.cc @@ -0,0 +1,11 @@ +--- src/tools/crc32.cc.orig 2007-07-15 12:46:37.000000000 +0400 ++++ src/tools/crc32.cc 2007-07-15 12:46:51.000000000 +0400 +@@ -97,7 +97,7 @@ + */ + + // With this macro defined, the function runs about 35% faster, but the code is about 3 times bigger : +-#define RUN_FASTER ++//#define RUN_FASTER + + #define DO_CRC(b) crc = (crc >> 8) ^ crc32table[(*(byte*)&crc) ^ (b)] + |