mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-01 17:28:00 +03:00
9 lines
193 B
C++
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!");
|
|
}
|