Changeset - r28444:1b046a6c3426
[Not reviewed]
master
0 3 0
Loïc Guilloux - 11 months ago 2024-01-14 12:27:03
glx22@users.noreply.github.com
Fix: compilation without precompiled headers (#11770)
3 files changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/blitter/32bpp_anim_sse4.cpp
Show inline comments
 
@@ -4,16 +4,16 @@
 
 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
 
 */
 

	
 
/** @file 32bpp_anim_sse4.cpp Implementation of the SSE4 32 bpp blitter with animation support. */
 

	
 
#include "palette_func.h"
 
#ifdef WITH_SSE
 

	
 
#include "../stdafx.h"
 
#include "../palette_func.h"
 
#include "../video/video_driver.hpp"
 
#include "../table/sprites.h"
 
#include "32bpp_anim_sse4.hpp"
 
#include "32bpp_sse_func.hpp"
 

	
 
#include "../safeguards.h"
src/network/core/os_abstraction.cpp
Show inline comments
 
@@ -16,12 +16,13 @@
 
 * that the behaviour is usually Unix/BSD-like with occasional variation.
 
 */
 

	
 
#include "stdafx.h"
 
#include "os_abstraction.h"
 
#include "../../string_func.h"
 
#include "../../3rdparty/fmt/format.h"
 
#include <mutex>
 

	
 
#include "../../safeguards.h"
 

	
 
/**
 
 * Construct the network error with the given error code.
src/os/windows/library_loader_win.cpp
Show inline comments
 
@@ -9,12 +9,13 @@
 

	
 
#include "../../stdafx.h"
 

	
 
#include <windows.h>
 

	
 
#include "../../library_loader.h"
 
#include "../../3rdparty/fmt/format.h"
 

	
 
#include "../../safeguards.h"
 

	
 
static std::string GetLoadError()
 
{
 
	auto error_code = GetLastError();
0 comments (0 inline, 0 general)