2013-06-21 01:19:47 -04:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-02-14 09:25:20 -08:00
|
|
|
#include <cstddef>
|
2015-12-27 00:31:33 -08:00
|
|
|
#include "Common/CommonTypes.h"
|
2013-06-21 01:19:47 -04:00
|
|
|
|
|
|
|
// This bool is the key to having the HD remasters work.
|
|
|
|
// We keep it set to false by default in PSPLoaders.cpp
|
|
|
|
// in order to keep the 99% of other PSP games working happily.
|
|
|
|
extern bool g_RemasterMode;
|
2013-07-16 00:32:54 -04:00
|
|
|
|
2013-06-22 04:05:28 -04:00
|
|
|
extern bool g_DoubleTextureCoordinates;
|
2013-06-21 01:19:47 -04:00
|
|
|
|
2013-06-21 13:34:57 -04:00
|
|
|
struct HDRemaster {
|
2013-12-30 10:49:05 +01:00
|
|
|
const char *gameID;
|
2015-12-27 00:31:33 -08:00
|
|
|
u32 memorySize;
|
|
|
|
bool doubleTextureCoordinates;
|
|
|
|
const char *umdDataValue;
|
2013-06-21 13:34:57 -04:00
|
|
|
};
|
|
|
|
|
2015-12-27 00:31:33 -08:00
|
|
|
extern const struct HDRemaster g_HDRemasters[];
|
|
|
|
extern const size_t g_HDRemastersCount;
|