2023-05-09 11:49:20 +00:00
|
|
|
// Set custom values to override the original game values
|
|
|
|
|
2023-05-13 14:08:02 +00:00
|
|
|
// Enable some micro optimizations to make the code more efficient
|
|
|
|
#define USE_MICRO_OPTIMIZATIONS 0
|
|
|
|
|
2023-05-09 11:49:20 +00:00
|
|
|
// The PSX allows to select which speed to use when reading from the disk.
|
|
|
|
// The two modes are Normal and Double. The normal uses 1x speed at 150kB/s
|
|
|
|
// while the double uses the 2x speed at 300kB/s.
|
|
|
|
#define USE_CD_SPEED_DOUBLE 0
|
2023-05-13 14:08:02 +00:00
|
|
|
|
|
|
|
#if USE_MICRO_OPTIMIZATIONS == 0
|
|
|
|
// use the slower memcpy from the PSX SDK
|
|
|
|
#define MEMCPY memcpy
|
|
|
|
#else
|
|
|
|
// use a much faster memcpy
|
|
|
|
#define MEMCPY fast_memcpy
|
|
|
|
// TODO not sure where to store the new fast_memcpy
|
2024-06-04 20:07:50 +00:00
|
|
|
#endif
|