Disable texture_cache::emit_once (MSVC crash)

This commit is contained in:
Nekotekina 2018-08-25 01:47:36 +03:00
parent 955be34914
commit a93a40e8d9
2 changed files with 5 additions and 5 deletions

View file

@ -510,13 +510,13 @@ namespace rsx
template <typename... Args>
void err_once(const char* fmt, const Args&... params)
{
emit_once(true, fmt, params...);
logs::RSX.error(fmt, params...);
}
template <typename... Args>
void warn_once(const char* fmt, const Args&... params)
{
emit_once(false, fmt, params...);
logs::RSX.warning(fmt, params...);
}
private: