mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Silence some Windows compiler warnings
by adding explicit type casts.
This commit is contained in:
@ -163,8 +163,8 @@ namespace HwRasterizer
|
||||
// While GLES uses texture coordinates
|
||||
if (GLInterface->GetMode() == GLInterfaceMode::MODE_OPENGL)
|
||||
{
|
||||
width = texUnit.texImage0[0].width;
|
||||
height = texUnit.texImage0[0].height;
|
||||
width = (float)texUnit.texImage0[0].width;
|
||||
height = (float)texUnit.texImage0[0].height;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user