-
Notifications
You must be signed in to change notification settings - Fork 601
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在windows平台上支持卡名复制 #2675
base: master
Are you sure you want to change the base?
在windows平台上支持卡名复制 #2675
Conversation
I have no Windows environment. Could someone review it? @salix5 @mercury233 @Wind2009-Louse |
gframe/game.cpp
Outdated
myswprintf(formatBuffer, L"%ls[%08d]", dataManager.GetName(cd.alias), cd.alias); | ||
else | ||
myswprintf(currentCardName, L"「%ls」", dataManager.GetName(cd.alias)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
non ASCII char may cause problem
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do user need quote when coping card name?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do user need quote when coping card name?
有些卡名中带有空格,用引号括起来更能表示空格两端是一个整体
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
non ASCII char may cause problem
我能想到的麻烦是,当有人把文件用非utf8编码打开时,会看到乱码。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
non ASCII char may cause problem
但为了避免人看到乱码而主动采用\u进行表达,相当于已经提前把可读字符进行了乱码处理(人脑难读)。
I don't think this feature is useful, but Irrlicht has |
No description provided.