Fixed regression introduced during dx12 development.

This commit is contained in:
Artem Kharytoniuk 2017-12-30 22:10:00 +01:00
parent fd0d330d83
commit 8c60e190c5

View File

@ -756,7 +756,7 @@ void RE_UploadCinematic (int w, int h, int cols, int rows, const byte *data, int
// VULKAN // VULKAN
if (vk.active) { if (vk.active) {
const Vk_Image& image = vk_world.images[tr.scratchImage[client]->index]; const Vk_Image& image = vk_world.images[tr.scratchImage[client]->index];
vk_upload_image_data(image.handle, cols, rows, 1, data, 4); vk_upload_image_data(image.handle, cols, rows, false, data, 4);
} }
// DX12 // DX12
if (dx.active) { if (dx.active) {