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 |
Castlevania: The Dracula X Chronicles |
v1.9.0 |
2022-05-03 |
Unknown GetPointer 00000000 PC 08828e2c LR 08828e2c |
Castlevania: The Dracula X Chronicles |
v1.12.3 |
2022-02-14 |
ReadFromHardware: Invalid address 0000011d near PC 08854ae8 LR 08850d5c |
Castlevania: The Dracula X Chronicles |
v1.12.3 |
2021-10-30 |
ReadFromHardware: Invalid address 112f28fc near PC 08000000 LR 08000000 |
Castlevania: The Dracula X Chronicles |
v1.9.4 |
2021-10-04 |
Error in shader compilation: info: ERROR: 0:23: 'u_video' : undeclared identifier
ERROR: 1 compilation errors. No code generated.
postshader
#ifdef GL_ES
precision mediump float;
precision mediump int;
#endif
uniform sampler2D sampler0;
varying vec2 v_texcoord0;
uniform vec4 u_setting;
uniform vec2 u_pixelDelta;
vec3 processColorReduction(vec3 color) {
vec3 colorRes = vec3(u_setting.y, u_setting.z, u_setting.w);
color = floor(color.rgb * colorRes) / (colorRes - 1.0);
color = min(color, 1.0);
return color;
}
void main() {
vec3 color = texture2D(sampler0, v_texcoord0.xy).xyz;
if(u_setting.x==2.0 || (u_setting.x==0.0 && u_video==0.0) || (u_setting.x==1.0 && u_video==1.0)) {
color=processColorReduction(color);
}
gl_FragColor.xyz=color.xyz;
gl_FragColor.a = 1.0;
}
|
Castlevania: The Dracula X Chronicles |
v1.9.4 |
2021-10-04 |
Error in shader compilation: info: ERROR: 0:41: 'u_video' : undeclared identifier
ERROR: 1 compilation errors. No code generated.
postshader
#ifdef GL_ES
precision mediump float;
precision mediump int;
#endif
uniform sampler2D sampler0;
varying vec2 v_texcoord0;
uniform vec4 u_setting;
vec3 processAspectRatio() {
float zoomByX = 16.0 / u_setting.y;
float zoomByY = 9.0 / u_setting.z;
float zoomByXY = 1.0;
if (zoomByX < zoomByY) {
zoomByXY = zoomByX;
} else {
zoomByXY = zoomByY;
}
float xdivision = 1.0 / (u_setting.y / 16.0 * zoomByXY);
float ydivision = 1.0 / (u_setting.z / 9.0 * zoomByXY);
vec3 color = texture2D(sampler0, vec2(v_texcoord0.x * xdivision - (0.5 + xdivision / 2.0 - 1.0), v_texcoord0.y * ydivision - (0.5 + ydivision / 2.0 - 1.0))).xyz;
// Remove color bleed outside of the game scene caused by shrinking
float rangex = (0.5 + (xdivision / 2.0 - 1.0)) / xdivision;
float rangey = (0.5 + (ydivision / 2.0 - 1.0)) / ydivision;
if (v_texcoord0.x < rangex || v_texcoord0.x > 1.0 - rangex || v_texcoord0.y < rangey || v_texcoord0.y > 1.0 - rangey) {
color.xyz = vec3(0.0,0.0,0.0).xyz;
}
return color.xyz;
}
void main() {
vec3 color = texture2D(sampler0, v_texcoord0.xy).xyz;
if(u_setting.x==2.0 || (u_setting.x==0.0 && u_video==0.0) || (u_setting.x==1.0 && u_video==1.0)) {
color=processAspectRatio();
}
gl_FragColor.xyz=color.xyz;
gl_FragColor.a = 1.0;
}
|
Castlevania: The Dracula X Chronicles |
v1.9.4 |
2021-10-04 |
Error in shader compilation: info: ERROR: 0:25: 'u_video' : undeclared identifier
ERROR: 1 compilation errors. No code generated.
postshader
#ifdef GL_ES
precision mediump float;
precision mediump int;
#endif
uniform sampler2D sampler0;
varying vec2 v_texcoord0;
uniform vec4 u_setting;
vec3 processPixelate() {
float factorX = 1.0 / (480.0 / u_setting.y);
float factorY = 1.0 / (272.0 / u_setting.y);
float x = floor(v_texcoord0.x / factorX) * factorX;
float y = floor(v_texcoord0.y / factorY) * factorY;
vec3 color = texture2D(sampler0, vec2(x, y)).xyz;
return color;
}
void main() {
vec3 color = texture2D(sampler0, v_texcoord0.xy).xyz;
if(u_setting.x==2.0 || (u_setting.x==0.0 && u_video==0.0) || (u_setting.x==1.0 && u_video==1.0)) {
color=processPixelate();
}
gl_FragColor.xyz=color.xyz;
gl_FragColor.a = 1.0;
}
|
Castlevania: The Dracula X Chronicles |
v1.9.0 |
2021-09-27 |
ReadFromHardware: Invalid address 6b736154 near PC 6b736154 LR 0887c570 |
Castlevania: The Dracula X Chronicles |
v1.9.0 |
2021-09-27 |
Unknown GetPointer 00000000 PC 08820224 LR 08820234 |
Castlevania: The Dracula X Chronicles |
v1.11.3 |
2021-08-25 |
MIPSCompileOp: Invalid instruction 43880000 |
Castlevania: The Dracula X Chronicles |
v1.11.3 |
2021-08-25 |
MIPSCompileOp: Invalid instruction 41f80000 |
Castlevania: The Dracula X Chronicles |
v1.11.3 |
2021-08-25 |
MIPSCompileOp: Invalid instruction 43e08000 |
Castlevania: The Dracula X Chronicles |
v1.11.3 |
2021-08-25 |
Branch in Jump delay slot at 00010018 in block starting at 00010000 |
Castlevania: The Dracula X Chronicles |
v1.9.0 |
2021-10-30 |
WriteToHardware: Invalid address 00000000 near PC 08000000 LR 08000000 |
Castlevania: The Dracula X Chronicles |
v1.11.3 |
2021-07-05 |
Unknown GetPointer 00000000 PC 08000000 LR 08000010 |
Castlevania: The Dracula X Chronicles |
v1.5.4-998-g08f26439c |
2021-06-01 |
ReadFromHardware: Invalid address 00000010 near PC 08867688 LR 08855fe0 |
Castlevania: The Dracula X Chronicles |
v1.12.3 |
2022-01-29 |
Ignoring possible texturing from framebuffer at 0412c200 +0x64 / 64x272 |
Castlevania: The Dracula X Chronicles |
v1.9.4 |
2021-08-25 |
Jump to invalid address: 024a1c10 |
Castlevania: The Dracula X Chronicles |
v1.9.4 |
2021-08-25 |
Jump to invalid address: 049dcaa0 |
Castlevania: The Dracula X Chronicles |
v1.12.3 |
2022-05-25 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 040ec200 offset: 0 (512x512 stride 512, 5551) |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04ce1f10: pc = 04cd1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04cd1f10: pc = 04cc1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04cf1f10: pc = 04ce1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04cb1f10: pc = 04ca1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04c91f10: pc = 04c81f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04cc1f10: pc = 04cb1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04c71f10: pc = 04c61f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04c41f10: pc = 04c31f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04c51f10: pc = 04c41f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04c31f10: pc = 04c21f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04c61f10: pc = 04c51f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04bf1f10: pc = 04be1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04be1f10: pc = 04bd1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04d01f10: pc = 04cf1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04b81f10: pc = 04b71f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04bc1f10: pc = 04bb1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04bd1f10: pc = 04bc1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04bb1f10: pc = 04ba1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04b61f10: pc = 04b51f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04b51f10: pc = 04b41f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04ca1f10: pc = 04c91f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04b31f10: pc = 04b21f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04c81f10: pc = 04c71f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04b01f10: pc = 04af1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04b21f10: pc = 04b11f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04b11f10: pc = 04b01f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04c01f10: pc = 04bf1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04c21f10: pc = 04c11f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04c11f10: pc = 04c01f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04ae1f10: pc = 04ad1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04ba1f10: pc = 04b91f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04ad1f10: pc = 04ac1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04b91f10: pc = 04b81f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04b71f10: pc = 04b61f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04b41f10: pc = 04b31f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04ab1f10: pc = 04aa1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04a91f10: pc = 04a81f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04a71f10: pc = 04a61f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04af1f10: pc = 04ae1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 049f1f10: pc = 049e1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04a51f10: pc = 04a41f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04a81f10: pc = 04a71f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04a61f10: pc = 04a51f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04a31f10: pc = 04a21f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04a41f10: pc = 04a31f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04a21f10: pc = 04a11f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04a11f10: pc = 04a01f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04a01f10: pc = 049f1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04ac1f10: pc = 04ab1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 049e1f10: pc = 049d1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04aa1f10: pc = 04a91f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 049c1f10: pc = 049b1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 049b1f10: pc = 049a1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 049a1f10: pc = 04991f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04981f10: pc = 04971f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04971f10: pc = 04961f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04991f10: pc = 04981f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04951f10: pc = 04941f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04941f10: pc = 04931f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04921f10: pc = 04911f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04931f10: pc = 04921f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 049d1f10: pc = 049c1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 048f1f10: pc = 048e1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04901f10: pc = 048f1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 048d1f10: pc = 048c1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04961f10: pc = 04951f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 048e1f10: pc = 048d1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04871f10: pc = 04861f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 048c1f10: pc = 048b1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 048b1f10: pc = 048a1f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04851f10: pc = 04841f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04911f10: pc = 04901f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04881f10: pc = 04871f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04841f10: pc = 04831f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 048a1f10: pc = 04891f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04811f10: pc = 04801f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04821f10: pc = 04811f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04831f10: pc = 04821f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04861f10: pc = 04851f10 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Branch in Jump delay slot at 00010060 in block starting at 00010000 |
Castlevania: The Dracula X Chronicles |
v1.5.4 |
2020-06-13 |
Trying to write block exit to illegal destination 04891f10: pc = 04881f10 |