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 |
eFootball By TM ARTS |
v1.16.3 |
2023-09-29 |
ReadFromHardware: Invalid address 1285db9c near PC 1285db9c LR 1285db9c |
eFootball By TM ARTS |
v1.15.4 |
2023-09-27 |
WriteToHardware: Invalid address 311eefa4 near PC 088c8b40 LR 088c8d6c |
eFootball By TM ARTS |
v1.15.4 |
2023-09-27 |
ReadFromHardware: Invalid address 311eefa8 near PC 088c86e4 LR 088c8d6c |
eFootball By TM ARTS |
v1.12.3 |
2023-09-27 |
Unknown GetPointer 4b21e1f6 PC 0888d3ec LR 0888d3fc |
eFootball By TM ARTS |
v1.16.3 |
2023-09-26 |
Jump to invalid address: 075d4dc0 |
eFootball By TM ARTS |
v1.16.3 |
2023-09-25 |
Jump to invalid address: 0738c240 |
eFootball By TM ARTS |
v1.16.3 |
2023-09-25 |
Jump to invalid address: 0738c300 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-24 |
Unknown GetPointer fb52abf6 PC 0881c410 LR 0881c420 |
eFootball By TM ARTS |
v1.16.3 |
2023-09-24 |
Jump to invalid address: 07427b80 |
eFootball By TM ARTS |
v1.16.3 |
2023-09-24 |
Jump to invalid address: 074f4100 |
eFootball By TM ARTS |
v1.16.3 |
2023-09-24 |
Jump to invalid address: 074f3a40 |
eFootball By TM ARTS |
v1.16.3 |
2023-09-24 |
Jump to invalid address: 074f3380 |
eFootball By TM ARTS |
v1.16.3 |
2023-09-24 |
Unknown GetPointerWrite 0c0fbb32 PC 08849f74 LR 0884aaf8 |
eFootball By TM ARTS |
v1.16.3 |
2023-09-24 |
Unknown GetPointer 2985afd4 PC 0881c2c0 LR 0881c2d0 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-24 |
ReadFromHardware: Invalid address 28ff7d2d near PC 28ff7d2d LR 088681bc |
eFootball By TM ARTS |
v1.16.2 |
2023-09-24 |
Unknown GetPointer 2985952c PC 0881c410 LR 0881c420 |
eFootball By TM ARTS |
v1.11 |
2023-09-24 |
ReadFromHardware: Invalid address 1285965c near PC 1285965c LR 1285965c |
eFootball By TM ARTS |
v1.11 |
2023-09-24 |
80420014=__sceSasCore(08bb3a00, 9744e8c0): invalid address |
eFootball By TM ARTS |
v1.15.4 |
2023-09-24 |
Jump to invalid address: 073c1900 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-24 |
UI scissor out of bounds in GameSettingsScreen: 141,0-496,272 / 604,272 |
eFootball By TM ARTS |
v1.16.2 |
2023-09-23 |
Unknown GetPointer 298622ec PC 0881c410 LR 0881c420 |
eFootball By TM ARTS |
v1.6.3 |
2023-09-23 |
Error in shader program link: info: Link failed because of missing vertex shader.
fs: 00000000:0001d000 AlphaTest0 >
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D testtex;
in vec4 v_color0;
out vec4 fragColor0;
void main() {
vec4 v = v_color0 ;
if (v.a < 0.002) discard;
fragColor0 = v;
}
vs: 00000000:0000000a THR C
#version 300 es
precision highp float;
in vec4 position;
in lowp vec4 color0;
uniform mat4 u_proj_through;
out lowp vec4 v_color0;
void main() {
v_color0 = color0;
gl_Position = u_proj_through * vec4(position.xyz, 1.0);
}
|
eFootball By TM ARTS |
v1.16.2 |
2023-09-23 |
Jump to invalid address: 0744da00 |
eFootball By TM ARTS |
v1.16.2 |
2023-09-22 |
Unknown GetPointer 2986596c PC 0881c410 LR 0881c420 |
eFootball By TM ARTS |
v1.16.2 |
2023-09-21 |
Jump to invalid address: 074e4600 |
eFootball By TM ARTS |
v1.16.2 |
2023-09-21 |
Jump to invalid address: 074e3f40 |
eFootball By TM ARTS |
v1.14.4 |
2023-09-20 |
Unknown GetPointer ff00f300 PC 0881c418 LR 0881c420 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-19 |
Unknown GetPointerWrite 7e8079ac PC 0888d3ec LR 0888d3fc |
eFootball By TM ARTS |
v1.6.3 |
2023-09-19 |
Error in shader program link: info: Link failed because of missing vertex shader.
fs: 00000000:00200022 Tex TexAlpha Fog TFuncMod
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
in vec4 v_color0;
uniform vec3 u_fogcolor;
in mediump float v_fogdepth;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
void main() {
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
float fogCoef = clamp(v_fogdepth, 0.0, 1.0);
v = mix(vec4(u_fogcolor, v.a), v, fogCoef);
fragColor0 = v;
}
vs: 00000000:0000091c HWX C T Fog Tex
#version 300 es
precision highp float;
in vec3 position;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform lowp vec4 u_matambientalpha;
uniform highp vec2 u_fogcoef;
out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
out mediump float v_fogdepth;
void main() {
vec3 worldpos = (u_world * vec4(position.xyz, 1.0)).xyz;
mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0);
vec4 viewPos = u_view * vec4(worldpos, 1.0);
gl_Position = u_proj * viewPos;
v_color0 = color0;
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
}
|
eFootball By TM ARTS |
v1.15.4 |
2023-09-19 |
Jump to invalid address: 073d4d40 |
eFootball By TM ARTS |
v1.14.4 |
2023-09-19 |
Unknown GetPointer 0000066a PC 0881c418 LR 0881c420 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-18 |
ReadFromHardware: Invalid address ff0d0c07 near PC ff0d0c07 LR 088681bc |
eFootball By TM ARTS |
v1.14.4 |
2023-09-18 |
Unknown GetPointer 0152a62b PC 0884d5a0 LR 0884d7c4 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-16 |
Unknown GetPointer 00000003 PC 08a019d0 LR 08a019dc |
eFootball By TM ARTS |
v1.14 |
2023-09-15 |
UI scissor out of bounds in GameSettingsScreen: 108,128-972,2184 / 2460,1080 |
eFootball By TM ARTS |
v1.14 |
2023-09-15 |
UI scissor out of bounds in GameSettingsScreen: 1202,0-4356,523 / 2460,1080 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-13 |
UI scissor out of bounds in SavedataScreen: 1197,75-0,75 / 1178,544 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-13 |
UI scissor out of bounds in SavedataScreen: 1299,75-0,75 / 1178,544 |
eFootball By TM ARTS |
v1.11.3 |
2023-09-13 |
Error in shader compilation: info: Compile failed.
ERROR: 0:1:0 '' is an invalid character.
ERROR: Unexpected end of source found
WARNING: 0:1:0 '' is an invalid character.
1 compilation warnings.
2 compilation errors. No code generated.
00000000:0000093c HWX C T Fog Tex Cull
|
eFootball By TM ARTS |
v1.11.3 |
2023-09-12 |
Unknown GetPointer 00000000 PC 08866bdc LR 08869e00 |
eFootball By TM ARTS |
v1.6.3 |
2023-09-12 |
Error in shader program link: info: Link failed because of missing fragment shader.
fs: 00004000:0001d022 Tex TexAlpha Flat TFuncMod AlphaTest0 >
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
flat in vec4 v_color0;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
void main() {
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
if (v.a < 0.002) discard;
fragColor0 = v;
}
vs: 40000000:00000012 THR Tex Flat
#version 300 es
precision highp float;
in vec4 position;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj_through;
flat out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
void main() {
v_texcoord = vec3(texcoord, 1.0);
v_color0 = color0;
gl_Position = u_proj_through * vec4(position.xyz, 1.0);
}
|
eFootball By TM ARTS |
v1.14.2 |
2023-09-12 |
UI scissor out of bounds in SavedataScreen: 1301,75-0,75 / 1178,544 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-12 |
UI scissor out of bounds in MainScreen: 0,0-1194,721 / 1600,720 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-11 |
UI scissor out of bounds in SavedataScreen: 1296,154-0,75 / 1178,544 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-13 |
UI scissor out of bounds in SavedataScreen: 1296,75-0,75 / 1178,544 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-11 |
UI scissor out of bounds in SavedataScreen: 1329,154-0,75 / 1178,544 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-11 |
UI scissor out of bounds in SavedataScreen: 1217,75-0,75 / 1178,544 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-11 |
UI scissor out of bounds in SavedataScreen: 1303,75-0,75 / 1178,544 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-13 |
UI scissor out of bounds in SavedataScreen: 1328,75-0,75 / 1178,544 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-11 |
UI scissor out of bounds in SavedataScreen: 1297,75-0,75 / 1178,544 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-11 |
UI scissor out of bounds in SavedataScreen: 1200,75-0,75 / 1178,544 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-11 |
UI scissor out of bounds in SavedataScreen: 1250,75-0,75 / 1178,544 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-13 |
UI scissor out of bounds in SavedataScreen: 1329,75-0,75 / 1178,544 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-11 |
ReadFromHardware: Invalid address c7c7ba01 near PC c7c7ba01 LR 088681bc |
eFootball By TM ARTS |
v1.14.4 |
2023-09-11 |
Unknown GetPointer 14fff100 PC 0881c418 LR 0881c420 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-09 |
Unknown GetPointer cbdbbb8e PC 0881c410 LR 0881c420 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-09 |
Unknown GetPointer f70c44f2 PC 0881c410 LR 0881c420 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-08 |
Unknown GetPointer 004641a9 PC 0881c410 LR 0881c420 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-07 |
Jump to invalid address: 07389c40 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-07 |
Branch in Jump delay slot at 09ce2700 in block starting at 09ce2700 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-07 |
Jump to invalid address: 07387c00 |
eFootball By TM ARTS |
v1.14.1 |
2023-09-07 |
Jump to invalid address: 0497cd90 PC 08edf81c LR 08e9c508 |
eFootball By TM ARTS |
v1.14.1 |
2023-09-07 |
Jump to invalid address: 0497cd80 PC 08edf818 LR 08e9c508 |
eFootball By TM ARTS |
v1.14.1 |
2023-09-07 |
Trying to compile instruction 00364d30 that can't be interpreted |
eFootball By TM ARTS |
v1.14.1 |
2023-09-07 |
Jump to invalid address: 03b7e000 PC 08edf808 LR 08e9c508 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-07 |
UI scissor out of bounds in GameSettingsScreen: 344,0-1243,720 / 1504,720 |
eFootball By TM ARTS |
v1.11.3 |
2023-09-07 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 146210816 |
eFootball By TM ARTS |
v1.11.3 |
2023-09-07 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296776 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-07 |
MIPSCompileOp: Invalid instruction 72a60e7a |
eFootball By TM ARTS |
v1.15.4 |
2023-09-07 |
MIPSCompileOp: Invalid instruction 9d82051f |
eFootball By TM ARTS |
v1.15.4 |
2023-09-07 |
MIPSCompileOp: Invalid instruction 050ff9ff |
eFootball By TM ARTS |
v1.15.4 |
2023-09-07 |
Jump to invalid address: 07353040 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
sceKernelRegisterSubIntrHandler(30, 0, 08a22378, 092827e0): duplicate handler |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 07466080 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 074be3c0 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 07488700 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 07488040 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-06 |
Jump to invalid address: 07445500 |
eFootball By TM ARTS |
v1.14.2 |
2023-09-06 |
Jump to invalid address: 07444e40 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 07424900 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 074d7080 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 07524f80 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 075248c0 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 07503ac0 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 07503400 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 07527100 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 07526a40 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 07470200 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 0746fb40 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 0743eb00 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 0743e440 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 07437680 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-06 |
Jump to invalid address: 07436fc0 |
eFootball By TM ARTS |
v1.15.4 |
2023-09-05 |
Branch in branch delay slot at 0001000c with different target |
eFootball By TM ARTS |
v1.15.4 |
2023-09-05 |
Jump to invalid address: 074d77c0 |
eFootball By TM ARTS |
v1.14.1 |
2023-09-05 |
UI scissor out of bounds in GamePauseScreen: 20,85-497,515 / 960,544 |
eFootball By TM ARTS |
v1.14.1 |
2023-09-05 |
MIPSCompileOp: Invalid instruction 46463a00 |
eFootball By TM ARTS |
v1.14.1 |
2023-09-05 |
Jump to invalid address: 07401d40 PC 08b0a8cc LR 088681bc |
eFootball By TM ARTS |
v1.14.1 |
2023-09-05 |
Jump to invalid address: 07401680 PC 08b0a8c8 LR 088681bc |
eFootball By TM ARTS |
v1.14.1 |
2023-09-05 |
Jump to invalid address: 07400fc0 PC 08b0a8c4 LR 088681bc |