mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-26 23:10:38 +00:00
Buildfix
This commit is contained in:
parent
3ef2ed32f3
commit
9c5cda3487
@ -633,7 +633,7 @@ ID3D11DepthStencilState *D3D11DrawContext::GetCachedDepthStencilState(const D3D1
|
|||||||
DepthStencilState *D3D11DrawContext::CreateDepthStencilState(const DepthStencilStateDesc &desc) {
|
DepthStencilState *D3D11DrawContext::CreateDepthStencilState(const DepthStencilStateDesc &desc) {
|
||||||
D3D11DepthStencilState *dss = new D3D11DepthStencilState();
|
D3D11DepthStencilState *dss = new D3D11DepthStencilState();
|
||||||
dss->desc = desc;
|
dss->desc = desc;
|
||||||
return dynamic_cast<DepthStencilState *>(dss);
|
return static_cast<DepthStencilState *>(dss);
|
||||||
}
|
}
|
||||||
|
|
||||||
BlendState *D3D11DrawContext::CreateBlendState(const BlendStateDesc &desc) {
|
BlendState *D3D11DrawContext::CreateBlendState(const BlendStateDesc &desc) {
|
||||||
|
@ -26,11 +26,6 @@
|
|||||||
#include "UI/MiscScreens.h"
|
#include "UI/MiscScreens.h"
|
||||||
#include "UI/Screen.h"
|
#include "UI/Screen.h"
|
||||||
|
|
||||||
enum class PauseScreenMode {
|
|
||||||
MAIN,
|
|
||||||
DISPLAY_SETTINGS,
|
|
||||||
};
|
|
||||||
|
|
||||||
class GamePauseScreen : public UIDialogScreenWithGameBackground {
|
class GamePauseScreen : public UIDialogScreenWithGameBackground {
|
||||||
public:
|
public:
|
||||||
GamePauseScreen(const Path &filename);
|
GamePauseScreen(const Path &filename);
|
||||||
@ -67,7 +62,6 @@ private:
|
|||||||
// hack
|
// hack
|
||||||
bool finishNextFrame_ = false;
|
bool finishNextFrame_ = false;
|
||||||
DialogResult finishNextFrameResult_ = DR_CANCEL;
|
DialogResult finishNextFrameResult_ = DR_CANCEL;
|
||||||
PauseScreenMode mode_ = PauseScreenMode::MAIN;
|
|
||||||
|
|
||||||
UI::Button *playButton_ = nullptr;
|
UI::Button *playButton_ = nullptr;
|
||||||
};
|
};
|
||||||
|
@ -573,7 +573,7 @@ void StoreScreen::CreateViews() {
|
|||||||
|
|
||||||
ProductItemView *StoreScreen::GetSelectedItem() {
|
ProductItemView *StoreScreen::GetSelectedItem() {
|
||||||
for (int i = 0; i < scrollItemView_->GetNumSubviews(); ++i) {
|
for (int i = 0; i < scrollItemView_->GetNumSubviews(); ++i) {
|
||||||
ProductItemView *item = dynamic_cast<ProductItemView *>(scrollItemView_->GetViewByIndex(i));
|
ProductItemView *item = static_cast<ProductItemView *>(scrollItemView_->GetViewByIndex(i));
|
||||||
if (!item) {
|
if (!item) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -585,7 +585,7 @@ ProductItemView *StoreScreen::GetSelectedItem() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
UI::EventReturn StoreScreen::OnGameSelected(UI::EventParams &e) {
|
UI::EventReturn StoreScreen::OnGameSelected(UI::EventParams &e) {
|
||||||
ProductItemView *item = dynamic_cast<ProductItemView *>(e.v);
|
ProductItemView *item = static_cast<ProductItemView *>(e.v);
|
||||||
if (!item)
|
if (!item)
|
||||||
return UI::EVENT_DONE;
|
return UI::EVENT_DONE;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user