diff options
author | Jaromir Wysoglad | 2019-08-19 19:30:08 -0700 |
---|---|---|
committer | Filippos Karapetis | 2019-08-24 18:12:45 +0300 |
commit | e0f2a3460a1ab551b918c72789c2dac88b614a7c (patch) | |
tree | 691b75d6dd921499221d56ec96eeebd2f2739493 /backends/platform/sdl/win32/codepage.cpp | |
parent | 04b28b208de7973347699c8a8e2cd355f7dd77f6 (diff) | |
download | scummvm-rg350-e0f2a3460a1ab551b918c72789c2dac88b614a7c.tar.gz scummvm-rg350-e0f2a3460a1ab551b918c72789c2dac88b614a7c.tar.bz2 scummvm-rg350-e0f2a3460a1ab551b918c72789c2dac88b614a7c.zip |
WIN32: Move getCodePageId to codepage.h
Diffstat (limited to 'backends/platform/sdl/win32/codepage.cpp')
-rw-r--r-- | backends/platform/sdl/win32/codepage.cpp | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/backends/platform/sdl/win32/codepage.cpp b/backends/platform/sdl/win32/codepage.cpp deleted file mode 100644 index 2bb3501e5d..0000000000 --- a/backends/platform/sdl/win32/codepage.cpp +++ /dev/null @@ -1,39 +0,0 @@ -/* ScummVM - Graphic Adventure Engine - * - * ScummVM is the legal property of its developers, whose names - * are too numerous to list here. Please refer to the COPYRIGHT - * file distributed with this source distribution. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - * - */ - -#ifdef WIN32 -#include "backends/platform/sdl/win32/codepage.h" -namespace Win32 { - -int getCodePageId(Common::String codePageName) { - const CodePageDescription *cp = g_cpDescriptions; - for (; cp->name; cp++) { - if (codePageName.equalsIgnoreCase(cp->name)) - return cp->id; - } - return -1; -} - -} - -#endif - |