mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-09 19:57:47 +02:00
7 lines
120 B
GLSL
7 lines
120 B
GLSL
int Helper_MultiplyHighS32(int x, int y)
|
|
{
|
|
int msb;
|
|
int lsb;
|
|
imulExtended(x, y, msb, lsb);
|
|
return msb;
|
|
} |