安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题








Thanks for reporting it
Open game directory and remove Cities_Loader.sh (remove startup param from steam too) and start game. PatchLoader mod should recreate that file and it should start working correctly from the next run. If not post contents of Cities_Loader.sh script.
export DOORSTOP_ENABLE=TRUE;
or
export DOORSTOP_ENABLE=FALSE;
any other will throw an error ;)
I think you are missing the point.
The error only came because I modified the loader script by adding in the LD_PRELOAD for the steam gameoverlayrenderer. This is the modified script, note the change I made to the LD_PRELOAD. Without this modification I have no steam overlay, with the modification I have the error, but it does not seem to affect the game.
#!/bin/sh
doorstop_libname="doorstop.so"
doorstop_dir=$PWD
export LD_LIBRARY_PATH=${doorstop_dir}:${LD_LIBRARY_PATH};
#export LD_PRELOAD=$doorstop_libname;
export LD_PRELOAD='/home/username/.steam/ubuntu12_64/gameoverlayrenderer.so':$doorstop_libname;
export DOORSTOP_ENABLE=TRUE;
export DOORSTOP_INVOKE_DLL_PATH="/home/username/.steam/steam/steamapps/workshop/content/255710/2041457644/PatchLoader/PatchLoader.dll";
./Cities.x64
Which is weird, never seen a app rely on a bash script having exact content on a specific line before.
Thanks for the help.