Removed unnecessary semi-colons.
svn-id: r44048
This commit is contained in:
parent
e53de46b4f
commit
e7469479ce
5 changed files with 5 additions and 5 deletions
|
@ -218,7 +218,7 @@ int PSPIoStream::resume() {
|
|||
_handle = fopen(_path.c_str(), _writeMode ? "wb" : "rb");
|
||||
if (_handle <= 0) {
|
||||
PSPDebugTrace("PSPIoStream::resume(): Couldn't reopen file %s\n", _path.c_str());
|
||||
ret = -1;;
|
||||
ret = -1;
|
||||
}
|
||||
|
||||
// Resume our previous position
|
||||
|
|
|
@ -106,7 +106,7 @@ bool FCSR_ReadSectors (u32 sector, u8 numSecs, void* buffer)
|
|||
bool flagSramSector = false;
|
||||
int numSectors = (numSecs > 0 ? numSecs : 256);
|
||||
int readLength = numSectors * BYTE_PER_READ;
|
||||
u8* src;;
|
||||
u8* src;
|
||||
u8* dst;
|
||||
|
||||
// Find which region this read is in
|
||||
|
|
|
@ -182,7 +182,7 @@ uint getSizeNextPOT(uint size) {
|
|||
_visibleWidth - _heightOffset, _visibleHeight - _widthOffset
|
||||
};
|
||||
|
||||
float texWidth = _width / (float)_textureWidth;;
|
||||
float texWidth = _width / (float)_textureWidth;
|
||||
float texHeight = _height / (float)_textureHeight;
|
||||
|
||||
const GLfloat texCoords[] = {
|
||||
|
|
|
@ -110,7 +110,7 @@ int ScummEngine_v90he::getHEPaletteSimilarColor(int palSlot, int red, int green,
|
|||
int ScummEngine_v90he::getHEPalette16BitColorComponent(int component, int type) {
|
||||
uint16 col;
|
||||
if (type == 2) {
|
||||
col = (((component & 0xFFFF) >> 0) & 0x1F) << 3;;
|
||||
col = (((component & 0xFFFF) >> 0) & 0x1F) << 3;
|
||||
} else if (type == 1) {
|
||||
col = (((component & 0xFFFF) >> 5) & 0x1F) << 3;
|
||||
} else {
|
||||
|
|
|
@ -554,7 +554,7 @@ bool MaxTrax::playSong(int songIndex, bool loop) {
|
|||
_playerCtx.scoreIndex = songIndex;
|
||||
_playerCtx.ticks = 0;
|
||||
|
||||
_playerCtx.nextEvent = _scores[songIndex].events;;
|
||||
_playerCtx.nextEvent = _scores[songIndex].events;
|
||||
_playerCtx.nextEventTime = _playerCtx.nextEvent->startTime;
|
||||
|
||||
Paula::startPaula();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue