From cdeb7e7ff2429a7f487d8c1443f859a52ad982de Mon Sep 17 00:00:00 2001 From: dhewg Date: Wed, 21 Dec 2011 22:59:49 +0100 Subject: [PATCH] Get rid of Sys_GetProcessorString() This was only used for a printf() and not implemented for all the platforms we can now run on. We also don't want to force a CPU type on Windows. --- sys/sys_public.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/sys_public.h b/sys/sys_public.h index 49ad389..86e8166 100644 --- a/sys/sys_public.h +++ b/sys/sys_public.h @@ -147,7 +147,6 @@ unsigned int Sys_Milliseconds( void ); // returns a selection of the CPUID_* flags int Sys_GetProcessorId( void ); -const char * Sys_GetProcessorString( void ); // returns true if the FPU stack is empty bool Sys_FPU_StackIsEmpty( void ); @@ -405,7 +404,6 @@ public: virtual unsigned int GetMilliseconds( void ) = 0; virtual int GetProcessorId( void ) = 0; - virtual const char * GetProcessorString( void ) = 0; virtual const char * FPU_GetState( void ) = 0; virtual bool FPU_StackIsEmpty( void ) = 0; virtual void FPU_SetFTZ( bool enable ) = 0;