Changeset - r15387:70dc7e2af543
[Not reviewed]
master
0 2 0
rubidium - 14 years ago 2010-06-30 22:17:53
rubidium@openttd.org
(svn r20040) -Codechange: some coding style + using proper types
2 files changed with 6 insertions and 4 deletions:
0 comments (0 inline, 0 general)
src/screenshot.cpp
Show inline comments
 
@@ -482,12 +482,13 @@ static const ScreenshotFormat _screensho
 

	
 
void InitializeScreenshotFormats()
 
{
 
	int i, j;
 
	for (i = 0, j = 0; i != lengthof(_screenshot_formats); i++)
 
	uint j = 0;
 
	for (uint i = 0; i < lengthof(_screenshot_formats); i++) {
 
		if (!strcmp(_screenshot_format_name, _screenshot_formats[i].extension)) {
 
			j = i;
 
			break;
 
		}
 
	}
 
	_cur_screenshot_format = j;
 
	_num_screenshot_formats = lengthof(_screenshot_formats);
 
}
 
@@ -497,8 +498,9 @@ const char *GetScreenshotFormatDesc(int 
 
	return _screenshot_formats[i].name;
 
}
 

	
 
void SetScreenshotFormat(int i)
 
void SetScreenshotFormat(uint i)
 
{
 
	assert(i < _num_screenshot_formats);
 
	_cur_screenshot_format = i;
 
	strecpy(_screenshot_format_name, _screenshot_formats[i].extension, lastof(_screenshot_format_name));
 
}
src/screenshot.h
Show inline comments
 
@@ -15,7 +15,7 @@
 
void InitializeScreenshotFormats();
 

	
 
const char *GetScreenshotFormatDesc(int i);
 
void SetScreenshotFormat(int i);
 
void SetScreenshotFormat(uint i);
 

	
 
/** Type of requested screenshot */
 
enum ScreenshotType {
0 comments (0 inline, 0 general)