(Vulkan) Dehardcode application name

This commit is contained in:
twinaphex 2019-07-19 20:12:12 +02:00
parent b747bb22f4
commit c4c7a1b8cc

View File

@ -2034,9 +2034,9 @@ bool vulkan_context_init(gfx_ctx_vulkan_data_t *vk,
use_instance_ext = vulkan_find_instance_extensions(instance_extensions, ext_count);
app.pApplicationName = "RetroArch";
app.pApplicationName = msg_hash_to_str(MSG_PROGRAM);
app.applicationVersion = 0;
app.pEngineName = "RetroArch";
app.pEngineName = msg_hash_to_str(MSG_PROGRAM);
app.engineVersion = 0;
app.apiVersion = VK_MAKE_VERSION(1, 0, 18);