mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 08:21:29 +12:00
20 lines
395 B
C++
20 lines
395 B
C++
#include "stdafx.h"
|
|
#include "overlays.h"
|
|
#include "overlay_message.h"
|
|
#include "overlay_loading_icon.hpp"
|
|
|
|
namespace rsx
|
|
{
|
|
namespace overlays
|
|
{
|
|
void show_shader_compile_notification()
|
|
{
|
|
queue_message(
|
|
localized_string_id::RSX_OVERLAYS_COMPILING_SHADERS,
|
|
5'000'000,
|
|
{},
|
|
message_pin_location::bottom,
|
|
std::make_unique<loading_icon24>());
|
|
}
|
|
}
|
|
}
|