diff --git a/code/game/machinery/computer/security_records.dm b/code/game/machinery/computer/security_records.dm
index 4d14336ef5c..4a5b30a9ef1 100644
--- a/code/game/machinery/computer/security_records.dm
+++ b/code/game/machinery/computer/security_records.dm
@@ -397,6 +397,13 @@
\nPhysical Status: [record_general.fields["p_stat"]]
\nMental Status: [record_general.fields["m_stat"]]
"}
P.name = "paper - 'Security Record: [record_general.fields["name"]]'"
+ var/obj/item/photo/photo = new(loc)
+ var/icon/new_photo = icon('icons/effects/64x32.dmi', "records")
+ new_photo.Blend(icon(record_general.fields["photo"], dir = SOUTH), ICON_OVERLAY, 0)
+ new_photo.Blend(icon(record_general.fields["photo"], dir = WEST), ICON_OVERLAY, 32)
+ new_photo.Scale(new_photo.Width() * 3, new_photo.Height() * 3)
+ photo.img = new_photo
+ photo.name = "photo - 'Security Record: [record_general.fields["name"]]'"
else
P.info += "General Record Lost!
"
if(record_security && GLOB.data_core.security.Find(record_security))
diff --git a/icons/effects/64x32.dmi b/icons/effects/64x32.dmi
new file mode 100644
index 00000000000..cef5e368738
Binary files /dev/null and b/icons/effects/64x32.dmi differ