(Glide64) fixed remaining unused function parameter name warnings

This commit is contained in:
unknown 2015-02-01 12:42:34 -05:00
parent b372464eb0
commit fd60328549
1 changed files with 7 additions and 1 deletions

View File

@ -3002,10 +3002,16 @@ input: FrameBufferModifyEntry *plist
size = size of the plist, max = 1024 size = size of the plist, max = 1024
output: none output: none
*******************************************************************/ *******************************************************************/
#ifdef RDP_LOGGING
EXPORT void CALL FBWList(FrameBufferModifyEntry *plist, wxUint32 size) EXPORT void CALL FBWList(FrameBufferModifyEntry *plist, wxUint32 size)
#else
EXPORT void CALL FBWList(FrameBufferModifyEntry *plist, wxUint32)
#endif
{ {
LOG ("FBWList ()\n"); LOG ("FBWList ()\n");
#ifdef RDP_LOGGING
FRDP("FBWList. size: %d\n", size); FRDP("FBWList. size: %d\n", size);
#endif
} }
@ -3018,7 +3024,7 @@ val val
size 1 = wxUint8, 2 = wxUint16, 4 = wxUint32 size 1 = wxUint8, 2 = wxUint16, 4 = wxUint32
output: none output: none
*******************************************************************/ *******************************************************************/
EXPORT void CALL FBWrite(wxUint32 addr, wxUint32 size) EXPORT void CALL FBWrite(wxUint32 addr, wxUint32 /*size*/)
{ {
LOG ("FBWrite ()\n"); LOG ("FBWrite ()\n");
if (cpu_fb_ignore) if (cpu_fb_ignore)