- Mac version now links. Updaterevision refuses to give me a version number.

Zipdir is not doing byte swapping like it should. zdoom.ini is stored
  in ~/Preferences, but all other file accesses are probably going to be
  like Windows and look in the same directory as the executable.



SVN r1786 (trunk)
This commit is contained in:
Randy Heit 2009-09-03 03:51:41 +00:00
commit 48d78730f3
8 changed files with 443 additions and 29 deletions

View file

@ -646,17 +646,3 @@ unsigned int I_MakeRNGSeed()
}
return seed;
}
#if !defined(__amd64__) && !defined(__i386__)
extern "C" CPUInfo CPU;
void CheckCPUID(CPUInfo *cpu)
{
memset(cpu, 0, sizeof(*cpu));
cpu->DataL1LineSize = 32; // Assume a 32-byte cache line
}
void DumpCPUInfo(const CPUInfo *cpu)
{
}
#endif