Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes swprintf_s issues hopefully.
Also fixed an include not using correct caps.

According to:
http://connect.microsoft.com/VisualStudio/feedback/details/646532
  • Loading branch information
Parlane committed Dec 23, 2012
1 parent 089434b commit e3eebdf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/Plugins/Plugin_VideoDX11/Src/Render.cpp
Expand Up @@ -16,7 +16,6 @@
// http://code.google.com/p/dolphin-emu/

#include <math.h>
#include <strsafe.h>

#include "Timer.h"

Expand Down Expand Up @@ -46,6 +45,7 @@
#include "AVIDump.h"
#include "FPSCounter.h"
#include "ConfigManager.h"
#include <strsafe.h>

namespace DX11
{
Expand Down
4 changes: 3 additions & 1 deletion Source/Plugins/Plugin_VideoDX9/Src/Render.cpp
Expand Up @@ -17,7 +17,6 @@

#include <list>
#include <d3dx9.h>
#include <strsafe.h>

#include "StringUtil.h"
#include "Common.h"
Expand Down Expand Up @@ -57,6 +56,9 @@
#include "FPSCounter.h"
#include "ConfigManager.h"

#include <strsafe.h>


namespace DX9
{

Expand Down
2 changes: 1 addition & 1 deletion Source/Plugins/Plugin_VideoDX9/Src/main.cpp
Expand Up @@ -49,7 +49,7 @@
#include "D3DUtil.h"
#include "EmuWindow.h"
#include "VideoState.h"
#include "render.h"
#include "Render.h"
#include "DLCache.h"
#include "IniFile.h"
#include "Core.h"
Expand Down

0 comments on commit e3eebdf

Please sign in to comment.