mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
11 lines
151 B
C++
11 lines
151 B
C++
|
#include "dxvk_main.h"
|
||
|
|
||
|
namespace dxvk {
|
||
|
|
||
|
Log g_logger("dxvk.log");
|
||
|
|
||
|
void log(const std::string& message) {
|
||
|
g_logger.log(message);
|
||
|
}
|
||
|
|
||
|
}
|