This commit is contained in:
Henrik Rydgard 2012-12-01 10:44:37 +01:00
parent 3de1259eb8
commit 815c3240bc
5 changed files with 9 additions and 9 deletions

View File

@ -38,7 +38,7 @@ void WindowsHost::ShutdownGL()
void WindowsHost::SetWindowTitle(const char *message)
{
// Really need a better way to deal with versions.
std::string title = "PPSSPP v0.31 - ";
std::string title = "PPSSPP v0.4 - ";
title += message;
SetWindowText(mainWindow_, title.c_str());
}

View File

@ -1,7 +1,7 @@
// NOTE: Apologies for the quality of this code, this is really from pre-opensource Dolphin - that is, 2003.
#define programname "PPSSPP v0.31"
#define programname "PPSSPP v0.4"
#include <windows.h>

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.ppsspp.ppsspp"
android:versionCode="3"
android:versionName="0.31" >
android:versionCode="4"
android:versionName="0.4" >
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8"/>

View File

@ -148,7 +148,7 @@ void MenuScreen::render() {
ui_draw2d.DrawTextShadow(UBUNTU48, "PPSSPP", dp_xres + xoff - w/2, 80, 0xFFFFFFFF, ALIGN_HCENTER | ALIGN_BOTTOM);
ui_draw2d.SetFontScale(0.7f, 0.7f);
ui_draw2d.DrawTextShadow(UBUNTU24, "V0.31", dp_xres + xoff, 80, 0xFFFFFFFF, ALIGN_RIGHT | ALIGN_BOTTOM);
ui_draw2d.DrawTextShadow(UBUNTU24, "V0.4", dp_xres + xoff, 80, 0xFFFFFFFF, ALIGN_RIGHT | ALIGN_BOTTOM);
ui_draw2d.SetFontScale(1.0f, 1.0f);
VLinear vlinear(dp_xres + xoff, 95, 20);
@ -360,7 +360,7 @@ void CreditsScreen::update(InputState &input_state) {
static const char *credits[] =
{
"PPSSPP v0.31",
"PPSSPP v0.4",
"",
"",
"A fast and portable PSP emulator",
@ -368,8 +368,8 @@ static const char *credits[] =
"",
"Created by Henrik Rydgard",
"",
"Top contributors:",
"kev",
"Contributors:",
"unknownbrackets",
"tmaul",
"orphis",
"artart78",

View File

@ -15,4 +15,4 @@ public class PpssppActivity extends NativeActivity {
{
return false;
}
}
}