From 3d64b65813492af41967a343194fc28f265ef34a Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Wed, 4 Oct 2017 08:03:24 +0300 Subject: [PATCH] Fix /dev/urandom typo --- rpcs3/Emu/Cell/lv2/sys_ss.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/lv2/sys_ss.cpp b/rpcs3/Emu/Cell/lv2/sys_ss.cpp index 60bb9e53b1..7e28158318 100644 --- a/rpcs3/Emu/Cell/lv2/sys_ss.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_ss.cpp @@ -52,7 +52,7 @@ error_code sys_ss_random_number_generator(u32 arg1, vm::ptr buf, u64 size) return CELL_EABORT; } #else - fs::file rnd{"/dev/random/"}; + fs::file rnd{"/dev/urandom"}; if (!rnd || rnd.read(buf.get_ptr(), size) != size) {