Remove unneeded semicolons

This commit is contained in:
Alex Barney
2018-12-01 14:27:48 -06:00
parent 267f82bd82
commit d16adaf965
4 changed files with 5 additions and 5 deletions

View File

@ -292,7 +292,7 @@ namespace Ryujinx.HLE.HOS.Services.Android
int nvMapHandle = BitConverter.ToInt32(_bufferQueue[slot].Data.RawData, 0x4c);
int bufferOffset = BitConverter.ToInt32(_bufferQueue[slot].Data.RawData, 0x50);
NvMapHandle map = NvMapIoctl.GetNvMap(context, nvMapHandle);;
NvMapHandle map = NvMapIoctl.GetNvMap(context, nvMapHandle);
long fbAddr = map.Address + bufferOffset;