mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-10 18:50:03 +01:00
fix android build
This commit is contained in:
parent
b99cae7642
commit
6bbaf18e71
|
|
@ -87,7 +87,11 @@ template <>
|
|||
void fmt_class_string<fmt::alc_error>::format(std::string& out, u64 arg)
|
||||
{
|
||||
const fmt::alc_error& obj = get_object(arg);
|
||||
#ifndef WITHOUT_OPENAL
|
||||
fmt::append(out, "0x%x='%s'", obj.error, alcGetString(obj.device, obj.error));
|
||||
#else
|
||||
fmt::append(out, "0x%x", obj.error);
|
||||
#endif
|
||||
}
|
||||
|
||||
void mic_context::operator()()
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "Utilities/Thread.h"
|
||||
#include "system_config_types.h"
|
||||
#include "Utilities/Config.h"
|
||||
#include <thread>
|
||||
|
|
|
|||
Loading…
Reference in a new issue