mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-03 11:15:20 +02:00
Rename some screen classes
This commit is contained in:
@@ -117,7 +117,7 @@ private:
|
||||
float startDisplayOffsetY_ = -1.0f;
|
||||
};
|
||||
|
||||
DisplayLayoutScreen::DisplayLayoutScreen(const Path &filename) : UIDialogScreenWithGameBackground(filename) {}
|
||||
DisplayLayoutScreen::DisplayLayoutScreen(const Path &filename) : UIBaseDialogScreen(filename) {}
|
||||
|
||||
void DisplayLayoutScreen::DrawBackground(UIContext &dc) {
|
||||
if (PSP_GetBootState() == BootState::Complete && !g_Config.bSkipBufferEffects) {
|
||||
@@ -181,7 +181,7 @@ static std::string PostShaderTranslateName(std::string_view value) {
|
||||
}
|
||||
|
||||
void DisplayLayoutScreen::sendMessage(UIMessage message, const char *value) {
|
||||
UIDialogScreenWithGameBackground::sendMessage(message, value);
|
||||
UIBaseDialogScreen::sendMessage(message, value);
|
||||
if (message == UIMessage::POSTSHADER_UPDATED) {
|
||||
g_Config.bShaderChainRequires60FPS = PostShaderChainRequires60FPS(GetFullPostShadersChain(g_Config.vPostShaderNames));
|
||||
RecreateViews();
|
||||
|
||||
Reference in New Issue
Block a user