[Scummvm-cvs-logs] SF.net SVN: scummvm: [30225] scummvm/trunk

eriktorbjorn at users.sourceforge.net eriktorbjorn at users.sourceforge.net
Sat Jan 5 09:17:40 CET 2008


Revision: 30225
          http://scummvm.svn.sourceforge.net/scummvm/?rev=30225&view=rev
Author:   eriktorbjorn
Date:     2008-01-05 00:17:39 -0800 (Sat, 05 Jan 2008)

Log Message:
-----------
Converted some spaces to tabs.

Modified Paths:
--------------
    scummvm/trunk/graphics/primitives.cpp
    scummvm/trunk/gui/themebrowser.cpp
    scummvm/trunk/sound/flac.cpp

Modified: scummvm/trunk/graphics/primitives.cpp
===================================================================
--- scummvm/trunk/graphics/primitives.cpp	2008-01-05 07:20:26 UTC (rev 30224)
+++ scummvm/trunk/graphics/primitives.cpp	2008-01-05 08:17:39 UTC (rev 30225)
@@ -85,7 +85,7 @@
 	float d = (float)sqrt(dx * dx + dy * dy);
 
 	if (!d)
-        return;
+		return;
 
 	int thickX = (int)((float)thickness * dy / d / 2);
 	int thickY = (int)((float)thickness * dx / d / 2);

Modified: scummvm/trunk/gui/themebrowser.cpp
===================================================================
--- scummvm/trunk/gui/themebrowser.cpp	2008-01-05 07:20:26 UTC (rev 30224)
+++ scummvm/trunk/gui/themebrowser.cpp	2008-01-05 08:17:39 UTC (rev 30225)
@@ -108,15 +108,15 @@
 #endif
 
 #ifdef MACOSX
-    CFURLRef resourceUrl = CFBundleCopyResourcesDirectoryURL(CFBundleGetMainBundle());
-    if (resourceUrl) {
+	CFURLRef resourceUrl = CFBundleCopyResourcesDirectoryURL(CFBundleGetMainBundle());
+	if (resourceUrl) {
 		char buf[256];
 		if (CFURLGetFileSystemRepresentation(resourceUrl, true, (UInt8 *)buf, 256)) {
 			Common::String resourcePath = buf;
 			addDir(_themes, resourcePath, 0);
 		}
-	    CFRelease(resourceUrl);
-    }
+		CFRelease(resourceUrl);
+	}
 #endif
 
 	if (ConfMan.hasKey("extrapath"))

Modified: scummvm/trunk/sound/flac.cpp
===================================================================
--- scummvm/trunk/sound/flac.cpp	2008-01-05 07:20:26 UTC (rev 30224)
+++ scummvm/trunk/sound/flac.cpp	2008-01-05 08:17:39 UTC (rev 30225)
@@ -573,7 +573,7 @@
 }
 
 inline ::FLAC__StreamDecoderWriteStatus FlacInputStream::callbackWrite(const ::FLAC__Frame *frame, const FLAC__int32 * const buffer[]) {
-    assert(frame->header.channels == _streaminfo.channels);
+	assert(frame->header.channels == _streaminfo.channels);
 	assert(frame->header.sample_rate == _streaminfo.sample_rate);
 	assert(frame->header.bits_per_sample == _streaminfo.bits_per_sample);
 	assert(frame->header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER || _streaminfo.min_blocksize == _streaminfo.max_blocksize);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list