From 4e7109113750d383fae9086638c17646f6df74b5 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Tue, 28 Nov 2006 14:42:31 +0000 Subject: (svn r7274) -Codechange [utf8]: Add input/output unicode support. This actually only changes win32 since it uses UTF16 for file access. To keep os-specific code to a minimum, OpenTTD uses UTF8 internally everywhere, converting to OS-type when needed (save/load/screenshot/etc.) --- screenshot.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'screenshot.c') diff --git a/screenshot.c b/screenshot.c index 82124ba6d..d205f20a9 100644 --- a/screenshot.c +++ b/screenshot.c @@ -76,7 +76,7 @@ static bool MakeBmpImage(const char *name, ScreenshotCallback *callb, void *user if (pixelformat != 8) return false; - f = fopen(OTTD2FS(name), "wb"); + f = fopen(name, "wb"); if (f == NULL) return false; // each scanline must be aligned on a 32bit boundary @@ -180,7 +180,7 @@ static bool MakePNGImage(const char *name, ScreenshotCallback *callb, void *user if (pixelformat != 8) return false; - f = fopen(OTTD2FS(name), "wb"); + f = fopen(name, "wb"); if (f == NULL) return false; png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, (char *)name, png_my_error, png_my_warning); @@ -292,7 +292,7 @@ static bool MakePCXImage(const char *name, ScreenshotCallback *callb, void *user if (pixelformat != 8 || w == 0) return false; - f = fopen(OTTD2FS(name), "wb"); + f = fopen(name, "wb"); if (f == NULL) return false; memset(&pcx, 0, sizeof(pcx)); -- cgit v1.2.3-54-g00ecf