- removed windows.h include from a few files which do not need it anymore.

This commit is contained in:
Christoph Oelckers 2017-11-25 10:58:33 +01:00
parent 6d43c5cdc6
commit 87816f811f
4 changed files with 1 additions and 17 deletions

View File

@ -30,10 +30,6 @@
**---------------------------------------------------------------------------
**
*/
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif
#include "mpg123_decoder.h"
#include "files.h"

View File

@ -32,13 +32,6 @@
**
*/
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#else
#include <dlfcn.h>
#endif
#include <functional>
#include <memory>
#include <chrono>

View File

@ -30,11 +30,6 @@
**---------------------------------------------------------------------------
**
*/
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif
#include "sndfile_decoder.h"
#include "templates.h"
#include "files.h"

View File

@ -820,7 +820,7 @@ void I_SetFPSLimit(int limit)
{
CloseHandle(FPSLimitEvent);
FPSLimitEvent = NULL;
Printf("Failed to create FPS limitter timer\n");
Printf("Failed to create FPS limiter timer\n");
return;
}
DPrintf(DMSG_NOTIFY, "FPS timer set to %u ms\n", period);