mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-03 09:23:37 +00:00
3d97be2559
Because po files now (should) use UTF-8, a bunch of code in ScummVM is redundant. This commit addresses that. - Remove charsetMapping and related variables. - Remove the code that used these functions. - Remove cp_parser.cpp. This is removed because the use of codepages is no longer needed. - Remove iso-8859-x codepages (see above message) - Always set mapping as 0 in ThemeEngine::loadScalableFont - Check if ascii or not by getting charset in about dialog.
12 lines
219 B
Makefile
12 lines
219 B
Makefile
MODULE := devtools/create_translations
|
|
|
|
MODULE_OBJS := \
|
|
po_parser.o \
|
|
create_translations.o
|
|
|
|
# Set the name of the executable
|
|
TOOL_EXECUTABLE := create_translations
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|