TombEngine/TR5Main/Renderer/Utils.cpp
Raildex d7a949c06a Refactored Index/Vertex Buffer
Now uses ComPtr
2020-06-16 15:11:30 +02:00

9 lines
193 B
C++

#include "framework.h"
#include "Utils.h"
#include <winerror.h>
void T5M::Renderer::Utils::throwIfFailed(const HRESULT& res)
{
if (FAILED(res))
throw std::exception("An error occured!");
}