Reduce buffer size back to 16, enable start menu

RwInitialised non-sense
This commit is contained in:
Shinovon 2026-05-07 01:25:53 +05:00
parent 38bc1a6dab
commit 689c76b4c5
7 changed files with 92 additions and 31 deletions

View file

@ -80,8 +80,7 @@ void TransformPoints(CVuVector *out, int n, const CMatrix &mat, const RwV3d *in,
": : "r" (out) , "r" (n), "r" (&mat), "r" (in), "r" (stride): "memory");
#else
while(n--){
const RwV3d i = *in;
*out = mat * i;
*out = mat * *in;
in = (RwV3d*)((uint8*)in + stride);
out++;
}
@ -111,8 +110,7 @@ void TransformPoints(CVuVector *out, int n, const CMatrix &mat, const CVuVector
": : "r" (out) , "r" (n), "r" (&mat) ,"r" (in): "memory");
#else
while(n--){
const RwV3d i = *in;
*out = mat * i;
*out = mat * *in;
in++;
out++;
}