Recent logs - Полиция Майами. Отдел нравов.™

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
Полиция Майами. Отдел нравов.™ v1.16.6 2024-01-08 sceKernelLoadModule: unsupported options size=00000014, flags=08a870f0, pos=0, access=1, data=2, text=2
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-10 sceKernelCreateSema(RealMutex) unsupported options parameter, size = -559038737
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-10 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146163040
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-10 sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 102464
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-10 GE Interrupt: newState might be 1
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-10 sceGeBreak(mode=0, unknown=08dfeea8): unknown ptr (valid)
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-10 Video out requested, not supported: mode=0 size=0,0
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-10 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145477660
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-10 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 2824
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-10 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167509648
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-10 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 143465056
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-10 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 148425648
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-08 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145504184
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-08 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145559772
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-08 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145551420
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-10 sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-08 sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=0, text=0
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-08 sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1
Полиция Майами. Отдел нравов.™ v1.12.2 2022-11-08 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147049076
Полиция Майами. Отдел нравов.™ v1.11.3 2021-08-24 sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=2, text=2
Полиция Майами. Отдел нравов.™ v1.11.3 2021-08-24 sceKernelLoadModule: unsupported options size=00000014, flags=088273f0, pos=0, access=1, data=1, text=1
Полиция Майами. Отдел нравов.™ v1.9.3 2020-06-24 Error in shader program link: info: Fragment shader(s) failed to link, vertex shader(s) linked. Fragment Shader not supported by HW 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,
Полиция Майами. Отдел нравов.™ v1.9.3-164-g0a5ec4838 2020-03-29 Unknown syscall in known module 'sceNpService': 0x72a1ce0d
Полиция Майами. Отдел нравов.™ v1.9.3-164-g0a5ec4838 2020-03-29 Unknown syscall in known module 'sceNpService': 0x66c64821
Полиция Майами. Отдел нравов.™ v1.9.3-164-g0a5ec4838 2020-03-29 Unknown syscall in known module 'sceNpService': 0x58251346
Полиция Майами. Отдел нравов.™ v1.9.3 2020-03-15 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
Полиция Майами. Отдел нравов.™ v1.9.4 2020-03-07 Unexpected mpeg first timestamp: dff892e4ccc / 15391169334476
Полиция Майами. Отдел нравов.™ v1.9.4 2020-03-07 Unexpected mpeg first timestamp: fe720f18f0d / 17485364563725
Полиция Майами. Отдел нравов.™ v1.9.4 2021-05-22 Unknown GetPointer 00000000 PC 08a622c8 LR 08a622c8
Полиция Майами. Отдел нравов.™ v1.9.4 2023-11-24 80630011=sceAtracSetDataAndGetID(08d77650, 00000030): buffer too small
Полиция Майами. Отдел нравов.™ v1.9.4 2020-10-14 Render to texture using CLUT with different strides 128 != 32
Полиция Майами. Отдел нравов.™ v1.9.4 2024-04-16 sceKernelLoadModule: unsupported options size=00000014, flags=09fffad0, pos=0, access=1, data=2, text=2
Полиция Майами. Отдел нравов.™ v1.9.4 2021-12-12 Render to texture with different strides 128 != 64
Полиция Майами. Отдел нравов.™ v1.9.4 2024-04-16 sceKernelLoadModule: unsupported options size=00000014, flags=09fffad0, pos=0, access=1, data=1, text=1
Полиция Майами. Отдел нравов.™ v1.9.4 2024-03-08 Render to texture using CLUT with different strides 16 != 32
Полиция Майами. Отдел нравов.™ v1.9.4 2024-03-08 Render to texture with different strides 128 != 32
Полиция Майами. Отдел нравов.™ v1.4.2-417-gb2057256b 2019-07-28 Loading module sceMpeg_library with version 0102, devkit 00000000
Полиция Майами. Отдел нравов.™ v1.4.2-417-gb2057256b 2019-07-28 Loading module sceATRAC3plus_Library with version 0103, devkit 00000000
Полиция Майами. Отдел нравов.™ v1.4.2-417-gb2057256b 2019-07-28 Loading module sceAudiocodec_Driver with version 0103, devkit 00000000
Полиция Майами. Отдел нравов.™ v1.4.2-417-gb2057256b 2019-07-28 Loading module sceMpegbase_Driver with version 0102, devkit 00000000
Полиция Майами. Отдел нравов.™ v1.4.2-417-gb2057256b 2019-07-28 Loading module sceVideocodec_Driver with version 0101, devkit 00000000
Полиция Майами. Отдел нравов.™ v1.4.2-417-gb2057256b 2019-07-28 Loading module sceSAScore with version 0103, devkit 00000000
Полиция Майами. Отдел нравов.™ v1.1.1-360-g2083f22 2015-12-18 sceKernelLoadModule: unsupported options size=00000014, flags=0bfffad0, pos=0, access=1, data=2, text=2
Полиция Майами. Отдел нравов.™ v1.1.1-360-g2083f22 2015-12-18 sceKernelLoadModule: unsupported options size=00000014, flags=0bfffad0, pos=0, access=1, data=1, text=1