Skip to content

Commit

Permalink
Merge pull request #421 from CarlKenner/MissingSpace
Browse files Browse the repository at this point in the history
Fix error message when D3D11 HResults fail.
  • Loading branch information
shuffle2 committed May 29, 2014
2 parents d18bc31 + 361d53f commit 329fcad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/VideoBackends/D3D/D3DBase.h
Expand Up @@ -17,7 +17,7 @@ namespace DX11
#define SAFE_RELEASE(x) { if (x) (x)->Release(); (x) = nullptr; }
#define SAFE_DELETE(x) { delete (x); (x) = nullptr; }
#define SAFE_DELETE_ARRAY(x) { delete[] (x); (x) = nullptr; }
#define CHECK(cond, Message, ...) if (!(cond)) { PanicAlert(__FUNCTION__ "Failed in %s at line %d: " Message, __FILE__, __LINE__, __VA_ARGS__); }
#define CHECK(cond, Message, ...) if (!(cond)) { PanicAlert(__FUNCTION__ " failed in %s at line %d: " Message, __FILE__, __LINE__, __VA_ARGS__); }

class D3DTexture2D;

Expand Down

0 comments on commit 329fcad

Please sign in to comment.