@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="0192" android:versionName="@string/app_version" package="net.wagic.app">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="0201" android:versionName="@string/app_version" package="net.wagic.app">
|
||||
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">Wagic</string>
|
||||
<string name="app_version">0.19.2</string>
|
||||
<string name="info_text">Wagic v0.19.2\\nAll Rights Reserved.</string>
|
||||
<string name="app_version">0.20.1</string>
|
||||
<string name="info_text">Wagic v0.20.1\\nAll Rights Reserved.</string>
|
||||
</resources>
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 142 KiB After Width: | Height: | Size: 405 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 150 KiB |
@@ -5,7 +5,6 @@ wallpapers/wagic1.jpg
|
||||
wallpapers/kaioshin_garruk.jpg
|
||||
wallpapers/kaioshin_jace.jpg
|
||||
graphics/shop.jpg
|
||||
themes/Classic/backdrop.jpg
|
||||
wallpapers/kaioshin_ravager.jpg
|
||||
wallpapers/kaioshin_elsXIII.jpg
|
||||
wallpapers/kaioshin_sorin.jpg
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#build.number.properties (normally this file is maintained by build.xml)
|
||||
#Sun, 06 May 2012 11:56:35 -0700
|
||||
build.major=0
|
||||
build.minor=19
|
||||
build.point=2
|
||||
build.minor=20
|
||||
build.point=1
|
||||
|
||||
|
||||
@@ -12,8 +12,8 @@ Author: Michael Nguyen
|
||||
|
||||
/* Wagic versions */
|
||||
#define WAGIC_VERSION_MAJOR 0
|
||||
#define WAGIC_VERSION_MEDIUM 19
|
||||
#define WAGIC_VERSION_MINOR 2
|
||||
#define WAGIC_VERSION_MEDIUM 20
|
||||
#define WAGIC_VERSION_MINOR 1
|
||||
|
||||
#define VERSION_DOT(a, b, c) a ##.## b ##.## c
|
||||
#define VERSION_WITHOUT_DOT(a, b, c) a ## b ## c
|
||||
|
||||
@@ -531,7 +531,8 @@ void Credits::Render()
|
||||
if (unlockedQuad)
|
||||
{
|
||||
showMsg = 0;
|
||||
r->RenderQuad(unlockedQuad.get(), 20, 20);
|
||||
unlockedQuad->SetHotSpot(unlockedQuad->mWidth/2,0);
|
||||
r->RenderQuad(unlockedQuad.get(), SCREEN_WIDTH_F/2, 20, 0, 400.f / unlockedQuad->mWidth, 100.f / unlockedQuad->mHeight);
|
||||
}
|
||||
if (unlockedString.size())
|
||||
{
|
||||
|
||||
@@ -704,7 +704,7 @@ void GameStateShop::Render()
|
||||
|
||||
JQuadPtr mBg = WResourceManager::Instance()->RetrieveTempQuad("shop.jpg", TEXTURE_SUB_5551);
|
||||
if (mBg.get())
|
||||
r->RenderQuad(mBg.get(), 0, 0);
|
||||
r->RenderQuad(mBg.get(), 0, 0, 0, SCREEN_WIDTH_F / mBg->mWidth, SCREEN_HEIGHT_F / mBg->mHeight);
|
||||
|
||||
JQuadPtr quad = WResourceManager::Instance()->RetrieveTempQuad("shop_light.jpg", TEXTURE_SUB_5551);
|
||||
if (quad.get())
|
||||
@@ -712,7 +712,8 @@ void GameStateShop::Render()
|
||||
r->EnableTextureFilter(false);
|
||||
r->SetTexBlend(BLEND_SRC_ALPHA, BLEND_ONE);
|
||||
quad->SetColor(ARGB(lightAlpha,255,255,255));
|
||||
r->RenderQuad(quad.get(), 0, 0);
|
||||
quad->SetHotSpot(0,quad->mHeight);
|
||||
r->RenderQuad(quad.get(), 0, SCREEN_HEIGHT, 0, 255.f / quad->mWidth, 272.f / quad->mHeight);
|
||||
r->SetTexBlend(BLEND_SRC_ALPHA, BLEND_ONE_MINUS_SRC_ALPHA);
|
||||
r->EnableTextureFilter(true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user