mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 06:51:26 +12:00
Disable texture_cache::emit_once (MSVC crash)
This commit is contained in:
parent
955be34914
commit
a93a40e8d9
2 changed files with 5 additions and 5 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue