Commit 46711ff1 authored by fallenstardust's avatar fallenstardust

3.3.9

parent 37388bdb
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#include <COGLESDriver.h> #include <COGLESDriver.h>
#endif #endif
const unsigned short PRO_VERSION = 0x1347; const unsigned short PRO_VERSION = 0x1348;
namespace ygo { namespace ygo {
...@@ -195,8 +195,9 @@ bool Game::Initialize() { ...@@ -195,8 +195,9 @@ bool Game::Initialize() {
lpcFont = irr::gui::CGUITTFont::createTTFont(driver, fs, gameConf.numfont, (int)48 * yScale, isAntialias, true); lpcFont = irr::gui::CGUITTFont::createTTFont(driver, fs, gameConf.numfont, (int)48 * yScale, isAntialias, true);
guiFont = irr::gui::CGUITTFont::createTTFont(driver, fs, gameConf.textfont, (int)gameConf.textfontsize * yScale, isAntialias, true); guiFont = irr::gui::CGUITTFont::createTTFont(driver, fs, gameConf.textfont, (int)gameConf.textfontsize * yScale, isAntialias, true);
textFont = guiFont; textFont = guiFont;
if(!numFont || !textFont) if(!numFont || !textFont) {
return false; os::Printer::log("add font fail ");
}
smgr = device->getSceneManager(); smgr = device->getSceneManager();
device->setWindowCaption(L"[---]"); device->setWindowCaption(L"[---]");
device->setResizable(false); device->setResizable(false);
...@@ -506,7 +507,7 @@ bool Game::Initialize() { ...@@ -506,7 +507,7 @@ bool Game::Initialize() {
stACMessage = env->addStaticText(L"", rect<s32>(0 * xScale, 0 * yScale, 350 * xScale, 60 * yScale), true, true, wACMessage, -1, true); stACMessage = env->addStaticText(L"", rect<s32>(0 * xScale, 0 * yScale, 350 * xScale, 60 * yScale), true, true, wACMessage, -1, true);
stACMessage->setBackgroundColor(0x6011113d); stACMessage->setBackgroundColor(0x6011113d);
stACMessage->setTextAlignment(irr::gui::EGUIA_CENTER, irr::gui::EGUIA_CENTER); stACMessage->setTextAlignment(irr::gui::EGUIA_CENTER, irr::gui::EGUIA_CENTER);
//yes/no (310) //yes/no (370)
wQuery = env->addWindow(rect<s32>(470 * xScale, 180 * yScale, 860 * xScale, 360 * yScale), false, dataManager.GetSysString(560)); wQuery = env->addWindow(rect<s32>(470 * xScale, 180 * yScale, 860 * xScale, 360 * yScale), false, dataManager.GetSysString(560));
wQuery->getCloseButton()->setVisible(false); wQuery->getCloseButton()->setVisible(false);
wQuery->setVisible(false); wQuery->setVisible(false);
......
...@@ -23,6 +23,12 @@ ...@@ -23,6 +23,12 @@
更新: 更新:
1.更新ygo内核; 1.更新ygo内核;
2.新卡YCPC+LVP2+VJ; 2.新卡YCPC+LVP2+VJ;
修复:
1.若干卡图错误;
2.询问框文字换行不正确;
优化:
1.部分点击体验;
2.更进全面屏适配;
</pre> </pre>
</body> </body>
</html> </html>
\ No newline at end of file
...@@ -38,8 +38,8 @@ ...@@ -38,8 +38,8 @@
29649320 29649320
29649320 29649320
44095762 44095762
58464739
62279055 62279055
61740673
#extra #extra
64599569 64599569
87116928 87116928
...@@ -51,5 +51,6 @@ ...@@ -51,5 +51,6 @@
1475311 1475311
1475311 1475311
44095762 44095762
58464739
74519184 74519184
77565204 77565204
...@@ -8,7 +8,7 @@ android { ...@@ -8,7 +8,7 @@ android {
applicationId "cn.garymb.ygomobile" applicationId "cn.garymb.ygomobile"
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 22 targetSdkVersion 22
versionCode 330901127 versionCode 330901202
versionName "3.3.9" versionName "3.3.9"
flavorDimensions "versionCode" flavorDimensions "versionCode"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment