1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

Fix overlays::image_info constructor

This commit is contained in:
Nekotekina 2022-01-26 14:24:06 +03:00
parent dba2baba9c
commit 3a1082fe0d

View File

@ -29,7 +29,7 @@ namespace rsx
{
fs::file f(filename);
if (!f)
if (!f || f.stat().is_directory)
{
rsx_log.error("Image resource file `%s' could not be opened (%s)", filename, fs::g_tls_error);
return;