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 |
MONSTER HUNTER PORTABLE 2nd |
v1.11.3-55-g8b7591791 |
2022-06-21 |
sceDmacMemcpy(dest=0414e000, src=094059a0, size=193808): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.12.3 |
2022-03-26 |
__KernelStopThread: thread 320 does not exist |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2022-03-21 |
Jump to invalid address: 07ff89a0 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2022-03-21 |
Jump to invalid address: 07ff8940 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.3 |
2022-02-08 |
sceDmacMemcpy(dest=0414e000, src=093d71d0, size=143456): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.11.2 |
2021-12-15 |
sceDmacMemcpy(dest=0414e000, src=09356a30, size=204944): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.11.2 |
2021-12-15 |
sceDmacMemcpy(dest=0414e000, src=093caa30, size=204944): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.3 |
2022-03-01 |
sceDmacMemcpy(dest=0414e000, src=0941b260, size=262880): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.11.2 |
2021-11-24 |
Unimplemented HLE function sceUtilityHtmlViewerGetStatus |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2021-10-16 |
Jump to invalid address: 07ffb230 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2021-10-16 |
Jump to invalid address: 07ff9808 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2021-10-16 |
Jump to invalid address: 07ff8ba0 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2022-03-21 |
Jump to invalid address: 07ff8b40 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.3 |
2021-08-28 |
Error in shader program link: info: (unknown reason)
fs: postshader
/*
AA shader 4.o / AA shader 4.o - filtro
Copyright (C) 2014 guest(r) - [email protected]
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// Modified as video aware smoothing effect for PPSSPP.
// Some variable definitions had to be moved inside functions(and so repeated) due to glsl->hlsl auto translation failing.
// Also auto translation fails with bool uniform, which is why u_video is defined as float.
#ifdef GL_ES
precision mediump float;
precision mediump int;
#endif
uniform sampler2D sampler0;
uniform float u_video;
//===========
varying vec2 v_texcoord0;
const vec3 dt = vec3(1.0,1.0,1.0);
vec3 texture2d (vec2 texcoord) {
float scale = 1.0;
if (u_video==1.0){
scale = 2.0;
} else {
scale = 7.0;
}
vec4 yx = vec4(1.0/480.0,1.0/272.0,-1.0/480.0,-1.0/272.0)/scale;
vec4 xy = vec4(2.0/480.0,2.0/272.0,-2.0/480.0,-2.0/272.0)/scale;
vec3 s00 = texture2D(sampler0, texcoord + yx.zw).xyz;
vec3 s20 = texture2D(sampler0, texcoord + yx.xw).xyz;
vec3 s22 = texture2D(sampler0, texcoord + yx.xy).xyz;
vec3 s02 = texture2D(sampler0, texcoord + yx.zy).xyz;
float m1=dot(abs(s00-s22),dt)+0.001;
float m2=dot(abs(s02-s20),dt)+0.001;
return 0.5*(m2*(s00+s22)+m1*(s02+s20))/(m1+m2);
}
vec3 texture2dd (vec2 texcoord) {
float scale = 1.0;
if (u_video==1.0){
scale = 2.0;
} else {
scale = 7.0;
}
vec4 yx = vec4(1.0/480.0,1.0/272.0,-1.0/480.0,-1.0/272.0)/scale;
vec4 xy = vec4(2.0/480.0,2.0/272.0,-2.0/480.0,-2.0/272.0)/scale;
vec3 c11 = texture2D(sampler0, texcoord ).xyz;
vec3 c00 = texture2D(sampler0, texcoord + xy.zw).xyz;
vec3 c20 = texture2D(sampler0, texcoord + xy.xw).xyz;
vec3 c22 = texture2D(sampler0, texcoord + xy.xy).xyz;
vec3 c02 = texture2D(sampler0, texcoord + xy.zy).xyz;
vec3 s00 = texture2D(sampler0, texcoord + yx.zw).xyz;
vec3 s20 = texture2D(sampler0, texcoord + yx.xw).xyz;
vec3 s22 = texture2D(sampler0, texcoord + yx.xy).xyz;
vec3 s02 = texture2D(sampler0, texcoord + yx.zy).xyz;
float d1=dot(abs(c00-c22),dt)+0.001;
float d2=dot(abs(c20-c02),dt)+0.001;
float m1=dot(abs(s00-s22),dt)+0.001;
float m2=dot(abs(s02-s20),dt)+0.001;
vec3 t2=(d1*(c20+c02)+d2*(c00+c22))/(2.0*(d1+d2));
return 0.25*(c11+t2+(m2*(s00+s22)+m1*(s02+s20))/(m1+m2));
}
void main() {
float scale = 7.0;
bool filtro = false;
if (u_video==1.0){
scale = 2.0;
filtro = true;
} else {
scale = 7.0;
filtro = false;
}
// Calculating texel coordinates
vec2 size = vec2(480.0,272.0)*scale;
vec2 inv_size = vec2(1.0/480.0,1.0/272.0)/scale;
vec2 OGL2Pos = v_texcoord0 * size;
vec2 fp = fract(OGL2Pos);
vec2 dx = vec2(inv_size.x,0.0);
vec2 dy = vec2(0.0, inv_size.y);
vec2 g1 = vec2(inv_size.x,inv_size.y);
vec2 g2 = vec2(-inv_size.x,inv_size.y);
vec2 pC4 = floor(OGL2Pos) * inv_size + 0.5*inv_size;
// Reading the texels
vec3 C0 = texture2d(pC4 - g1);
vec3 C1 = texture2d(pC4 - dy);
vec3 C2 = texture2d(pC4 - g2);
vec3 C3 = texture2d(pC4 - dx);
vec3 C4 = texture2d(pC4 );
vec3 C5 = texture2d(pC4 + dx);
vec3 C6 = texture2d(pC4 + g2);
vec3 C7 = texture2d(pC4 + dy);
vec3 C8 = texture2d(pC4 + g1);
vec3 ul, ur, dl, dr;
float m1, m2;
m1 = dot(abs(C0-C4),dt)+0.001;
m2 = dot(abs(C1-C3),dt)+0.001;
ul = (m2 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.3 |
2021-08-28 |
Error in shader program link: info: (unknown reason)
fs: postshader
/*
Hyllian's xBR-lv2 Shader Accuracy (tweak by guest.r)
Copyright (C) 2011-2015 Hyllian - [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Incorporates some of the ideas from SABR shader. Thanks to Joshua Street.
*/
#ifdef GL_ES
precision mediump float;
precision mediump int;
#endif
#define CornerA 0 //ON:1/OFF:0 / A, B, C, D are just different variants of corner rounding
#define CornerB 0 //ON:1/OFF:0 / activate only one
#define CornerD 0 //ON:1/OFF:0
// CornerC //used as default if none of the above is defined
const float XBR_SCALE = 3.0;
const float lv2_cf = 2.0;
const float coef = 2.0;
const vec3 rgbw = vec3(14.352, 28.176, 5.472);
const vec4 eq_threshold = vec4(15.0, 15.0, 15.0, 15.0);
const vec4 Ao = vec4( 1.0, -1.0, -1.0, 1.0 );
const vec4 Bo = vec4( 1.0, 1.0, -1.0,-1.0 );
const vec4 Co = vec4( 1.5, 0.5, -0.5, 0.5 );
const vec4 Ax = vec4( 1.0, -1.0, -1.0, 1.0 );
const vec4 Bx = vec4( 0.5, 2.0, -0.5,-2.0 );
const vec4 Cx = vec4( 1.0, 1.0, -0.5, 0.0 );
const vec4 Ay = vec4( 1.0, -1.0, -1.0, 1.0 );
const vec4 By = vec4( 2.0, 0.5, -2.0,-0.5 );
const vec4 Cy = vec4( 2.0, 0.0, -1.0, 0.5 );
const vec4 Ci = vec4(0.25, 0.25, 0.25, 0.25);
uniform sampler2D sampler0;
uniform vec2 u_texelDelta;
uniform vec2 u_pixelDelta;
varying vec2 v_texcoord0;
// Difference between vector components.
vec4 df(vec4 A, vec4 B) {
return vec4(abs(A-B));
}
// Compare two vectors and return their components are different.
vec4 diff(vec4 A, vec4 B) {
return vec4(notEqual(A, B));
}
// Determine if two vector components are equal based on a threshold.
vec4 eq(vec4 A, vec4 B) {
return (step(df(A, B), eq_threshold));
}
// Determine if two vector components are NOT equal based on a threshold.
vec4 neq(vec4 A, vec4 B) {
return (vec4(1.0, 1.0, 1.0, 1.0) - eq(A, B));
}
float c_df(vec3 c1, vec3 c2) {
vec3 df = abs(c1 - c2);
return df.r + df.g + df.b;
}
void main() {
bool upscale = u_texelDelta.x > (1.6 * u_pixelDelta.x);
vec3 res = texture2D(sampler0, v_texcoord0.xy).xyz;
// Let's skip the whole scaling if output size smaller than 1.6x of input size
if (upscale) {
vec4 edri, edr, edr_l, edr_u, px; // px = pixel, edr = edge detection rule
vec4 irlv0, irlv1, irlv2l, irlv2u;
vec4 fx, fx_l, fx_u; // inequations of straight lines.
vec2 pS = 1.0 / u_texelDelta.xy;
vec2 fp = fract(v_texcoord0.xy*pS.xy);
vec2 TexCoord_0 = v_texcoord0.xy-fp*u_pixelDelta.xy;
vec2 dx = vec2(u_texelDelta.x,0.0);
vec2 dy = vec2(0.0,u_texelDelta.y);
vec2 y2 = dy + dy; vec2 x2 = dx + dx;
vec4 delta = vec4(1.0/XBR_SCALE, 1.0/XBR_SCALE, 1.0/XBR_SCALE, 1.0/XBR_SCALE);
vec4 delta_l = vec4(0.5/XBR_SCALE, 1.0/XBR_SCALE, 0.5/XBR_SCALE, 1.0/XBR_SCALE);
vec4 delta_u = delta_l.yxwz;
vec3 A = texture2D(sampler0, TexCoord_0 -dx -dy ).xyz;
vec3 B = texture2D(sampler0, Tex |
MONSTER HUNTER PORTABLE 2nd |
v1.9.3 |
2021-08-28 |
Error in shader program link: info: (unknown reason)
fs: postshader
/*
Hyllian's 5xBR v3.5a Shader
Copyright (C) 2011 Hyllian/Jararaca - [email protected]
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef GL_ES
precision mediump float;
precision mediump int;
#endif
uniform sampler2D sampler0;
uniform vec2 u_texelDelta;
uniform vec2 u_pixelDelta;
varying vec2 v_texcoord0;
const float coef = 2.0;
const vec3 rgbw = vec3(16.163, 23.351, 8.4772);
const vec4 Ao = vec4( 1.0, -1.0, -1.0, 1.0 );
const vec4 Bo = vec4( 1.0, 1.0, -1.0,-1.0 );
const vec4 Co = vec4( 1.5, 0.5, -0.5, 0.5 );
const vec4 Ax = vec4( 1.0, -1.0, -1.0, 1.0 );
const vec4 Bx = vec4( 0.5, 2.0, -0.5,-2.0 );
const vec4 Cx = vec4( 1.0, 1.0, -0.5, 0.0 );
const vec4 Ay = vec4( 1.0, -1.0, -1.0, 1.0 );
const vec4 By = vec4( 2.0, 0.5, -2.0,-0.5 );
const vec4 Cy = vec4( 2.0, 0.0, -1.0, 0.5 );
vec4 df(vec4 A, vec4 B) {
return abs(A-B);
}
vec4 weighted_distance(vec4 a, vec4 b, vec4 c, vec4 d, vec4 e, vec4 f, vec4 g, vec4 h) {
return (df(a,b) + df(a,c) + df(d,e) + df(d,f) + 4.0*df(g,h));
}
void main(){
bool upscale = u_texelDelta.x > (1.6 * u_pixelDelta.x);
vec3 res = texture2D(sampler0, v_texcoord0.xy).xyz;
// Let's skip the whole scaling if output size smaller than 1.6x of input size
if (upscale) {
bvec4 edr, edr_left, edr_up, px; // px = pixel, edr = edge detection rule
bvec4 interp_restriction_lv1, interp_restriction_lv2_left, interp_restriction_lv2_up;
bvec4 nc; // new_color
bvec4 fx, fx_left, fx_up; // inequations of straight lines.
vec2 pS = 1.0 / u_texelDelta.xy;
vec2 fp = fract(v_texcoord0.xy*pS.xy);
vec2 TexCoord_0 = v_texcoord0.xy-fp*u_pixelDelta.xy;
vec2 dx = vec2(u_texelDelta.x,0.0);
vec2 dy = vec2(0.0,u_texelDelta.y);
vec2 y2 = dy + dy; vec2 x2 = dx + dx;
vec3 A = texture2D(sampler0, TexCoord_0 -dx -dy ).xyz;
vec3 B = texture2D(sampler0, TexCoord_0 -dy ).xyz;
vec3 C = texture2D(sampler0, TexCoord_0 +dx -dy ).xyz;
vec3 D = texture2D(sampler0, TexCoord_0 -dx ).xyz;
vec3 E = texture2D(sampler0, TexCoord_0 ).xyz;
vec3 F = texture2D(sampler0, TexCoord_0 +dx ).xyz;
vec3 G = texture2D(sampler0, TexCoord_0 -dx +dy ).xyz;
vec3 H = texture2D(sampler0, TexCoord_0 +dy ).xyz;
vec3 I = texture2D(sampler0, TexCoord_0 +dx +dy ).xyz;
vec3 A1 = texture2D(sampler0, TexCoord_0 -dx -y2).xyz;
vec3 C1 = texture2D(sampler0, TexCoord_0 +dx -y2).xyz;
vec3 A0 = texture2D(sampler0, TexCoord_0 -x2 -dy).xyz;
vec3 G0 = texture2D(sampler0, TexCoord_0 -x2 +dy).xyz;
vec3 C4 = texture2D(sampler0, TexCoord_0 +x2 -dy).xyz;
vec3 I4 = texture2D(sampler0, TexCoord_0 +x2 +dy).xyz;
vec3 G5 = texture2D(sampler0, TexCoord_0 -dx +y2).xyz;
vec3 I5 = texture2D(sampler0, TexCoord_0 +dx +y2).xyz;
vec3 B1 = texture2D(sampler0, TexCoord_0 -y2).xyz;
vec3 D0 = texture2D(sampler0, TexCoord_0 -x2 ).xyz;
vec3 H5 = texture2D(sampler0, TexCoord_0 +y2).xyz;
vec3 F4 = texture2D(sampler0, TexCoord_0 +x2 ).xyz;
vec4 b = vec4(dot(B ,rgbw), dot(D ,rgbw), dot(H ,rgbw), dot(F ,rgbw));
vec4 c = vec4(dot(C ,rgbw), dot(A ,rgbw), dot(G ,rgbw), dot(I ,rgbw));
vec4 d = vec4(b.y, b.z, b.w, b.x);
vec4 e = vec4(dot(E,rgbw));
vec4 f = vec4(b.w, b.x, b.y, b.z);
vec4 g = vec4(c.z, c.w, c.x, c.y);
vec4 h = vec4(b.z, b.w, b.x, b.y);
vec4 i = vec4(c.w, |
MONSTER HUNTER PORTABLE 2nd |
v1.9.3 |
2021-08-28 |
sceDmacMemcpy(dest=09b70680, src=08474000, size=1408): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.11.3 |
2021-08-06 |
sceDmacMemcpy(dest=0414e000, src=09356a70, size=158640): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.6.3-312-g31646d6c8 |
2021-08-02 |
sceDmacMemcpy(dest=0414e000, src=0935b410, size=198032): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.6.3-312-g31646d6c8 |
2021-08-02 |
Error in shader program link: info: (unknown reason)
fs: 00000000:00000022 Tex TexAlpha TFuncMod
#version 300 es
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
in vec4 v_color0;
in mediump vec3 v_texcoord;
inout vec4 fragColor0;
void main() {
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
fragColor0 = v;
}
vs: 00000000:00000b10 HWX T N Tex
#version 300 es
precision highp float;
in vec3 position;
in mediump vec3 normal;
in vec2 texcoord;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform lowp vec4 u_matambientalpha;
out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
void main() {
vec3 worldpos = (u_world * vec4(position.xyz, 1.0)).xyz;
mediump vec3 worldnormal = normalize((u_world * vec4(normal, 0.0)).xyz);
vec4 viewPos = u_view * vec4(worldpos, 1.0);
gl_Position = u_proj * viewPos;
v_color0 = u_matambientalpha;
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
}
|
MONSTER HUNTER PORTABLE 2nd |
v1.6.3-312-g31646d6c8 |
2021-08-02 |
sceDmacMemcpy(dest=0414e000, src=0935b260, size=262880): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.11.2 |
2021-06-30 |
sceDmacMemcpy(dest=0414e000, src=093e32b0, size=215232): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.11.3 |
2021-06-20 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089d5494, pos=0, access=1, data=2, text=2 |
MONSTER HUNTER PORTABLE 2nd |
v1.11.3 |
2021-06-20 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08aa3278, pos=0, access=1, data=1, text=1 |
MONSTER HUNTER PORTABLE 2nd |
v1.11.3 |
2021-06-08 |
sceKernelCreateSema(KSAP_ThLockSema) unsupported attr parameter: 00000011 |
MONSTER HUNTER PORTABLE 2nd |
v1.11.3 |
2021-06-08 |
sceKernelCreateSema(KSAP_FnLockSema) unsupported attr parameter: 00000011 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.3-85-gc7b3a08cf |
2021-03-17 |
Unknown syscall in known module 'sceNpService': 0x268c009d |
MONSTER HUNTER PORTABLE 2nd |
v1.9.3-85-gc7b3a08cf |
2021-03-17 |
Unknown syscall in known module 'sceNpService': 0x1da3e950 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.3-85-gc7b3a08cf |
2021-03-17 |
Unknown syscall in known module 'sceNpService': 0x168b8de5 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.3-85-gc7b3a08cf |
2021-03-17 |
Unknown syscall in known module 'sceNpAuth': 0xd99455dd |
MONSTER HUNTER PORTABLE 2nd |
v1.9.3-85-gc7b3a08cf |
2021-03-17 |
Unknown syscall in known module 'sceNpAuth': 0xcd86a656 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.4 |
2021-02-12 |
sceDmacMemcpy(dest=0414e000, src=093fabf0, size=242560): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.4 |
2021-02-11 |
sceDmacMemcpy(dest=0414e000, src=0941ac10, size=198032): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.4 |
2021-02-08 |
sceDmacMemcpy(dest=0414e000, src=0935eb40, size=259744): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2021-01-15 |
Ignoring func export sceLibFont/5c3e4a9e, already implemented in HLE. |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2021-01-15 |
Ignoring func export sceLibFont/dcc80c2f, already implemented in HLE. |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2021-01-15 |
Ignoring func export sceLibFont/0da7535e, already implemented in HLE. |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2021-01-14 |
Ignoring func export sceLibFont/681e61a7, already implemented in HLE. |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2021-01-14 |
Ignoring func export sceLibFont/099ef33c, already implemented in HLE. |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2021-01-14 |
Ignoring func export sceLibFont/bc75d85b, already implemented in HLE. |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2021-01-14 |
Ignoring func export sceLibFont/27f6e642, already implemented in HLE. |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2021-01-03 |
sceDmacMemcpy(dest=0414e000, src=093e3a00, size=188768): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.4-2-g648bc5d |
2021-01-02 |
sceDmacMemcpy(dest=0414e000, src=093fac60, size=202336): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2021-01-02 |
sceKernelLoadModule: unsupported options size=00000014, flags=08caf9fc, pos=0, access=1, data=1, text=1 |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2021-01-02 |
sceKernelCreateThread(name=sceMemab): unsupported attributes 00001006 |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=1, access=0, data=0, text=0 |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unimplemented HLE function sceKernelFindModuleByUID |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'sceNp': 0xbb069a87 |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'sceNp': 0x633b5f71 |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'sceNp': 0x1d60ae4b |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'sceNpService': 0x08d98894 |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'sceNpService': 0xbb069a87 |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'sceNpService': 0x857b47d3 |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'sceNpService': 0x633b5f71 |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'sceNpService': 0x37e1e274 |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'sceNpService': 0x1d60ae4b |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'ThreadManForUser': 0xb435dec5 |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'ThreadManForUser': 0x91e4f6a7 |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'ThreadManForUser': 0x79d1c3fa |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'ThreadManForUser': 0x71ec4271 |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'Kernel_Library': 0x4ac57943 |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'Kernel_Library': 0x05572a5f |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
UNIMPL sceKernelFindModuleByName(sceMesgLed) |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'SysMemForKernel': 0x3fc9ae6a |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-12-26 |
Unknown syscall in known module 'SysMemForKernel': 0x536ad5e1 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-12-13 |
sceDmacMemcpy(dest=0414e000, src=09417b20, size=230976): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-12-13 |
sceDmacMemcpy(dest=0414e000, src=09417b00, size=222080): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-12-05 |
sceDmacMemcpy(dest=0414e000, src=0941bc40, size=222096): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-12-05 |
sceDmacMemcpy(dest=0414e000, src=0941bbf0, size=257200): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-11-21 |
sceDmacMemcpy(dest=0414e000, src=092f9a00, size=204944): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-11-21 |
sceDmacMemcpy(dest=0414e000, src=09417bf0, size=242480): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-11-15 |
sceDmacMemcpy(dest=0414e000, src=09419ad0, size=288320): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-11-15 |
sceDmacMemcpy(dest=0414e000, src=09419a40, size=241472): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-11-15 |
sceKernelCreateThread(name=god_menu): unsupported attributes 00000006 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-11-15 |
sceDmacMemcpy(dest=0414e000, src=0941d230, size=239760): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-11-14 |
sceDmacMemcpy(dest=0414e000, src=0941c1a0, size=193808): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-11-14 |
sceDmacMemcpy(dest=0414e000, src=09359260, size=262384): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-11-07 |
sceDmacMemcpy(dest=0414e000, src=092f2af0, size=230976): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-10-31 |
sceDmacMemcpy(dest=0414e000, src=09443c20, size=242560): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-10-25 |
sceDmacMemcpy(dest=0414e000, src=093e5af0, size=166480): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-10-25 |
sceDmacMemcpy(dest=0414e000, src=09345a60, size=262384): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-10-24 |
sceDmacMemcpy(dest=0414e000, src=09358990, size=180208): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-10-24 |
sceDmacMemcpy(dest=0414e000, src=09358a80, size=155872): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-10-22 |
sceDmacMemcpy(dest=0414e000, src=09414e60, size=243728): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-10-22 |
sceDmacMemcpy(dest=0414e000, src=09414b70, size=277104): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-10-22 |
sceDmacMemcpy(dest=0414e000, src=09345af0, size=175072): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-10-21 |
Jump to invalid address: 07ff93c8 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-10-21 |
Jump to invalid address: 07ff8760 |
MONSTER HUNTER PORTABLE 2nd |
v1.9.0 |
2020-10-21 |
Jump to invalid address: 07ff8700 |
MONSTER HUNTER PORTABLE 2nd |
v1.4-2-g648bc5d |
2020-10-19 |
sceDmacMemcpy(dest=0414e000, src=09356c10, size=198032): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-10-18 |
sceDmacMemcpy(dest=0414e000, src=093cf2b0, size=244016): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.4-2-g648bc5d |
2020-10-17 |
sceDmacMemcpy(dest=0414e000, src=09356a30, size=204944): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.4-2-g648bc5d |
2020-10-17 |
sceDmacMemcpy(dest=0414e000, src=09356a70, size=201504): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-10-17 |
sceDmacMemcpy(dest=0414e000, src=093cc990, size=180208): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.4-2-g648bc5d |
2020-10-17 |
sceDmacMemcpy(dest=0414e000, src=09419360, size=248336): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-10-15 |
sceDmacMemcpy(dest=0414e000, src=092f2240, size=158640): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-10-15 |
sceDmacMemcpy(dest=0414e000, src=09414af0, size=175072): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-10-11 |
sceDmacMemcpy(dest=0414e000, src=09358a50, size=210944): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-10-09 |
sceDmacMemcpy(dest=0414e000, src=0935b280, size=218704): overlapping read |
MONSTER HUNTER PORTABLE 2nd |
v1.10.3 |
2020-10-07 |
sceDmacMemcpy(dest=0414e000, src=09356310, size=231056): overlapping read |