blob: 858d3a62cb74125349caf57adc0a7185ff744fca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
diff -Naur libsidplay/src/smart.h xmms-fc-0.5.3/src/smart.h
--- libsidplay.vanilla/src/smart.h 1998-11-30 13:10:00.000000000 -0600
+++ libsidplay/src/smart.h 2004-07-03 01:49:33.991970368 -0500
@@ -207,16 +207,16 @@
{
if ( bufferLen >= 1 )
{
- pBufCurrent = ( bufBegin = buffer );
- bufEnd = bufBegin + bufferLen;
- bufLen = bufferLen;
- status = true;
+ this->pBufCurrent = ( this->bufBegin = buffer );
+ this->bufEnd = this->bufBegin + bufferLen;
+ this->bufLen = bufferLen;
+ this->status = true;
}
else
{
- pBufCurrent = bufBegin = bufEnd = 0;
- bufLen = 0;
- status = false;
+ this->pBufCurrent = this->bufBegin = this->bufEnd = 0;
+ this->bufLen = 0;
+ this->status = false;
}
}
};
|