Recent logs - Resistance: Retribution™

To see your stuff show here, enable Compatibility Server Reports in PPSSPP.

Click on a version, game, or report message to show similar entries. Hover over version to see platform info, and hover over a game title to see region and version info.

Game title Version Latest Report Message
Resistance: Retribution™ v1.17.1 2024-04-21 Unknown GetPointerWrite 1fffa938 PC 08d09d20 LR 08cd6754
Resistance: Retribution™ v1.17.1-332-g85a3631a8 2024-04-20 ReadFromHardware: Invalid address 00000000 near PC 089125e4 LR 089125f0
Resistance: Retribution™ v1.17.1-332-g85a3631a8 2024-04-20 ReadFromHardware: Invalid address 0000001a near PC 089125e4 LR 08c989cc
Resistance: Retribution™ v1.17.1 2024-04-19 Unknown GE command : ef2bf400
Resistance: Retribution™ v1.17.1 2024-04-18 Unexpected mpeg first timestamp: 100000b403 / 68719522819
Resistance: Retribution™ v1.16.6 2024-04-18 WriteToHardware: Invalid address 27f9cce8 near PC 08d09d38 LR 08cd6754
Resistance: Retribution™ v1.16.6 2024-04-18 ReadFromHardware: Invalid address 27f9cce8 near PC 08cd670c LR 08ca1a84
Resistance: Retribution™ v1.16.6 2024-04-18 Unknown GetPointerWrite 27f9cce8 PC 088ed324 LR 08cd6754
Resistance: Retribution™ v1.17.1 2024-04-18 Could not setup streams, unexpected stream count: 12356
Resistance: Retribution™ v1.17.1 2024-04-17 WriteToHardware: Invalid address 3d3f800c near PC 08ca1a70 LR 08ca2aac
Resistance: Retribution™ v1.17.1 2024-04-17 Unknown GetPointerWrite 26394ce0 PC 08d09d20 LR 08cd6754
Resistance: Retribution™ v1.17.1 2024-04-15 Unknown GetPointerWrite 26569eb8 PC 08d09d20 LR 08cd6754
Resistance: Retribution™ v1.16.6 2024-04-11 WriteToHardware: Invalid address 04800000 near PC 08c281c4 LR 08c281ec
Resistance: Retribution™ v1.16.6 2024-04-11 Unknown GetPointerWrite 25ffa938 PC 08cd66f4 LR 08cd6754
Resistance: Retribution™ v1.17.1 2024-04-11 Unexpected mpeg first timestamp: 49c15094b49 / 5068414339913
Resistance: Retribution™ v1.17.1 2024-04-10 Error in shader compilation: info: 0:1: F0002: Mali-400 GP register allocation failed for vertex shader. Please contact [email protected] with the shader causing the problem, along with this error message. Mali online shader compiler r7p0-00rel1 [Revision 96995]. 01f15551:00000b29 HWX C T N LM Light: 0: c:1 t:0 1: c:1 t:1 2: c:1 t:1 3: c:1 t:1 MatUp:1 Cull #version 100 // Driver: Mali-400 MP - GLSL 100 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) // 01f15551:00000b29 HWX C T N LM Light: 0: c:1 t:0 1: c:1 t:1 2: c:1 t:1 3: c:1 t:1 MatUp:1 Cull attribute vec3 position; attribute mediump vec3 normal; attribute vec2 texcoord; attribute lowp vec4 color0; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform vec3 u_lightpos0; uniform lowp vec3 u_lightambient0; uniform lowp vec3 u_lightdiffuse0; uniform lowp vec3 u_lightspecular0; uniform vec3 u_lightpos1; uniform mediump vec3 u_lightatt1; uniform lowp vec3 u_lightambient1; uniform lowp vec3 u_lightdiffuse1; uniform lowp vec3 u_lightspecular1; uniform vec3 u_lightpos2; uniform mediump vec3 u_lightatt2; uniform lowp vec3 u_lightambient2; uniform lowp vec3 u_lightdiffuse2; uniform lowp vec3 u_lightspecular2; uniform vec3 u_lightpos3; uniform mediump vec3 u_lightatt3; uniform lowp vec3 u_lightambient3; uniform lowp vec3 u_lightdiffuse3; uniform lowp vec3 u_lightspecular3; uniform lowp vec4 u_ambient; uniform lowp vec3 u_matdiffuse; uniform lowp vec4 u_matspecular; uniform lowp vec3 u_matemissive; uniform lowp vec4 u_matambientalpha; uniform highp vec2 u_fogcoef; uniform highp vec4 u_depthRange; uniform highp vec4 u_cullRangeMin; uniform highp vec4 u_cullRangeMax; varying lowp vec4 v_color0; varying lowp vec3 v_color1; varying mediump vec3 v_texcoord; varying mediump float v_fogdepth; vec3 normalizeOr001(vec3 v) { return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v); } void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = normalizeOr001(mul(vec4(normal, 0.0), u_world).xyz); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); vec4 ambientColor = color0; vec3 diffuseColor = u_matdiffuse.rgb; vec3 specularColor = u_matspecular.rgb; lowp vec4 lightSum0 = u_ambient * ambientColor + vec4(u_matemissive, 0.0); lowp vec3 lightSum1 = splat3(0.0); vec3 toLight; lowp vec3 diffuse; float distance; lowp float lightScale; mediump float ldot; toLight = u_lightpos0; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0); if (ldot >= 0.0) { if (u_matspecular.a > 0.0) { ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal); ldot = pow(max(ldot, 0.0), u_matspecular.a); } else { ldot = 1.0; } if (ldot > 0.0) lightSum1 += u_lightspecular0 * specularColor * ldot ; } lightSum0.rgb += (u_lightambient0 * ambientColor.rgb + diffuse); toLight = u_lightpos1 - worldpos; distance = length(toLight); toLight /= distance; ldot = dot(toLight, worldnormal); lightScale = clamp(1.0 / dot(u_lightatt1, vec3(1.0, distance, distance*distance)), 0.0, 1.0); diffuse = (u_lightdiffuse1 * diffuseColor) * max(ldot, 0.0); if (ldot >= 0.0) { if (u_matspecular.a > 0.0) { ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal); ldot = pow(max(ldot, 0.0), u_matspecular.a); } else { ldot = 1.0; } if (ldot > 0.0) lightSum1 += u_lightspecular1 * specularColor * ldot * lightScale; } lightSum0.rgb += (u_lightambient1 * ambientColor.rgb + diffuse) * lightScale; toLight = u_lightpos2 - worldpos; distance = length(toLight); toLight /= distance; ldot = dot(toLight, worldnormal); lightScale = clamp(1.0 / dot(u_lightatt2, vec3(1.0, distance, distance*distance)), 0.0, 1.0); diffuse = (u_lightdiffuse2 * diffuseColor) * max(ldot, 0.0); if (ldot >= 0.0) { if (u_matspecular.a > 0
Resistance: Retribution™ v1.17.1 2024-04-10 Unknown GetPointerWrite 27f9cce8 PC 08d09d20 LR 08cd6754
Resistance: Retribution™ v1.17.1 2024-04-08 Unknown GetPointerWrite 263f2938 PC 08d09d20 LR 08cd6754
Resistance: Retribution™ v1.9.4 2024-04-08 Unknown GetPointer 287d3468 PC 08c926e0 LR 08cd6754
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03a70400 PC 09ffd590 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd58c in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03a70400 PC 09ffd58c LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd588 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 02d41570 PC 09ffd588 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 073f95c0 PC 09ffd580 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd57c in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 0619f8c0 PC 09ffd57c LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd578 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 0613cc50 PC 09ffd578 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd574 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03840000 PC 09ffd574 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd570 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03980000 PC 09ffd570 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 0398f810 PC 09ffd568 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Trying to compile instruction 416002c7 that can't be interpreted
Resistance: Retribution™ v1.16.5 2024-04-07 MIPSCompileOp: Invalid instruction 43f70ec4
Resistance: Retribution™ v1.16.5 2024-04-07 MIPSCompileOp: Invalid instruction 43698796
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 026abd50 PC 09ffd53c LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 073f95c0 PC 09ffd534 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd530 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 0619f8c0 PC 09ffd530 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd52c in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 0613cc50 PC 09ffd52c LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd528 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 036deaf0 PC 09ffd528 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd524 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03840000 PC 09ffd524 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd520 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 036debb0 PC 09ffd520 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 037c0000 PC 09ffd4dc LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 07ff5600 PC 09ffd4d0 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 0225ab80 PC 09ffd48c LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 0225ac40 PC 09ffd484 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd480 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03840000 PC 09ffd480 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd47c in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03b42980 PC 09ffd47c LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 MIPSCompileOp: Invalid instruction 00000095
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03a80000 PC 09ffd474 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 068f5ea0 PC 09ffd46c LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd468 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 037c0000 PC 09ffd468 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd464 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03a71580 PC 09ffd464 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd460 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03a70400 PC 09ffd460 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03a75d40 PC 09ffd450 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd44c in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03a715c0 PC 09ffd44c LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd448 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03a71580 PC 09ffd448 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd444 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 037c0000 PC 09ffd444 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 MIPSCompileOp: Invalid instruction 7f7fffff
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 02973490 PC 09ffd438 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd434 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 0244b1c0 PC 09ffd434 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd430 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 0244b260 PC 09ffd430 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd42c in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03a75d40 PC 09ffd42c LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Branch in Jump delay slot at 09ffd428 in block starting at 09ffd3e0
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03a715c0 PC 09ffd428 LR 08912d10
Resistance: Retribution™ v1.16.5 2024-04-07 Jump to invalid address: 03a71e40 PC 09ffd420 LR 08912d10
Resistance: Retribution™ v1.16.6 2024-04-04 Unknown GetPointerWrite 261705c8 PC 08cd674c LR 08cd6754
Resistance: Retribution™ v1.17.1 2024-04-03 Branch in Jump delay slot at 08e50d68 in block starting at 08e50d5c
Resistance: Retribution™ v1.17.1 2024-04-03 Branch in Jump delay slot at 08e50d64 in block starting at 08e50d5c
Resistance: Retribution™ v1.17.1 2024-04-03 Branch in Jump delay slot at 08e50d60 in block starting at 08e50d5c
Resistance: Retribution™ v1.17.1 2024-04-03 Branch in Jump delay slot at 08e50d5c in block starting at 08e50d5c
Resistance: Retribution™ v1.17.1 2024-04-03 Jump to invalid address: 03415aa0 PC 08e50d6c LR 08c1fcd4
Resistance: Retribution™ v1.17.1 2024-04-03 Branch in Jump delay slot at 08e50d68 in block starting at 08e50d50
Resistance: Retribution™ v1.17.1 2024-04-03 Jump to invalid address: 039435d0 PC 08e50d68 LR 08c1fcd4
Resistance: Retribution™ v1.17.1 2024-04-03 Branch in Jump delay slot at 08e50d64 in block starting at 08e50d50
Resistance: Retribution™ v1.17.1 2024-04-03 Jump to invalid address: 03776320 PC 08e50d64 LR 08c1fcd4
Resistance: Retribution™ v1.17.1 2024-04-03 Branch in Jump delay slot at 08e50d60 in block starting at 08e50d50
Resistance: Retribution™ v1.17.1 2024-04-03 Jump to invalid address: 03943540 PC 08e50d60 LR 08c1fcd4
Resistance: Retribution™ v1.17.1 2024-04-03 Branch in Jump delay slot at 08e50d5c in block starting at 08e50d50
Resistance: Retribution™ v1.17.1 2024-04-03 Jump to invalid address: 03415aa0 PC 08e50d5c LR 08c1fcd4
Resistance: Retribution™ v1.17.1 2024-04-03 Jump to invalid address: 03943580 PC 08e50d54 LR 08c1fcd4
Resistance: Retribution™ v1.17.1 2024-04-03 ReadFromHardware: Invalid address 00000030 near PC 08c1fc34 LR 08c1fcd4